Fixed. I had to do the following, for anyone encountering a similar problem:
Add this to the main CSS. If your style isn't using verdana in that cell, substitute which font you're looking for.
Code:
/* ***** Forum Rollover Coloring ***** */
.forumrollover
{
background: #555555;
color: #CCCCCC;
font: verdana;
}
Where the colors are from your alt2Active settings.
Then where this is present:
Code:
onmouseover="this.className='alt2Active'
Change to:
Code:
onmouseover="this.className='forumrollover'
Hope that helps anyone that might run into the same problem. IMHO this is a better way of doing it, as someone else mentioned, since it uses a separate CSS slot for a very specific feature, and it'll allow you to edit the color to your choosing without changing your alt2Active color settings globally.
- Chris