You have a script that is adding a class called "over" to the <tr> that holds the page content.
The script contains this:
Code:
jQuery(".post table tr").mouseover(function() {jQuery(this).addClass("over");}).mouseout(function() {jQuery(this).removeClass("over");});
If you don't want anything to change to a gray background on mouseover, you should be able to just get rid of those lines. If you want certain parts to turn gray on mouseover, then add a more specific selector for those areas. Maybe give them a special class.
|