Forum Hover Color

Matthew2D

Well-known member
Hello. Is it possible to make each forum show up as a different color when you hover over it with your mouse?

Thanks!
 
Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code:

Rich (BB code):
.nodeList .node_8 .nodeInfo:hover
{
	background: #123456;
}

You need to specify the node_id and desired background color. This is the result (when you mouse over that forum):

Screen shot 2012-02-01 at 8.37.05 PM.webp
 
Top Bottom