MyBB Community Forums

Full Version: Highlighted Forums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'd like to highlight my forum categories and topics on mouse hover. Check http://www.minecraftforum.net to see what I mean.

I've managed to get the forum categories highlighted with the help of Janota using:

tbody[id*='cat'] tr:hover td.trow1, 
tbody[id*='cat'] tr:hover td.trow2 {
background: #F5F5F5;
} 

in my global.css, but I'd also like to highlight the topic in each forums on mouse hover, but not the individual posts withing each thread. That's why this:

tr:hover td.trow1, 
tr:hover td.trow2 {
background: #F5F5F5;
} 

won't work.


Any ideas?