aolae 0 Report post Posted May 24, 2011 I don't want the comments in my comment-list to alternate color. Tried to add a rule in CSS: .alternate td { background:transparent; background-color: transparent; } but it doesn't help. There are still backgrounds overriding the new rule... Share this post Link to post Share on other sites
cmunns 16 Report post Posted May 24, 2011 THe correct selector would be: `body .commentlist ul.children .even {background:none;}` Share this post Link to post Share on other sites
aolae 0 Report post Posted May 25, 2011 Tried it. But it doesn't seem to change anything... http://www.anolaerts.be/2011/05/22/onbekend-gebladerte/#comments Share this post Link to post Share on other sites
Kate 3 Report post Posted May 25, 2011 Hi An, I didn't look closely... Some of those comments may have been replies and thus the coloring was off. But, make sure you add both of these lines to your CSS: #comments .even{background:none;} #comments .odd{background:none;} (I know I saw a similar line for the "odd" class, but adding both lines worked for me (on your site) Share this post Link to post Share on other sites
aolae 0 Report post Posted May 25, 2011 Hurray! That works! Thank you. Share this post Link to post Share on other sites