CSS Issue

when you take your mouse over a forum topic here http://www.cagedanimal2.net/phpbb3/index.php you will see it changes to a grey color…how can i remove this hover ?

In your stylesheet, these three declarations have an effect on that:

line 932

li.row:hover {
	background-color: #535353;
}

line 3110

li.row:hover {
	background-color: #252525;
}

li.row:hover dd {
	border-left-color: #252525;
}

Comment them out with /* … */ and see if you prefer that. I kind of like the hover effect, myself.

This will introduce some other little border problems, but they can be fixed once you’ve dealt with the hover effect.