The Blueprint CSS Framework 1.0.1 set all table rows of alternating colors by default. The line in screen.css is:
tbody tr:nth-child(even) td, tbody tr.even td {background:#e5ecf9;}
that's fine
but i need to disable this behaviour for one table inside a div (inside) a modal windows using the simplemodal jquery plugin by eric martin, i just tried to override the css using:
#contact-container tbody tr:nth-child(even) td, tbody tr.even td {background:#FFFFCC;}
in other css file name custom.css loaded after screen.css but this override affect all tables in page even outside contact-container
is there any way to override the behaviour just for that table inside div ?
Anyone can help me out?
Thanks in advance!