Quote:
Originally Posted by QueenBee
wow i actually did it, but is there any way i can change the color of it?? i have a light theme, and the color that it makes is bothering my eyes.
thanks
|
Yup.
In the main CSS for your style, add this to the bottom of the "Additional CSS Definitions" block down the bottom.
Code:
/* ***** Forum Rollover Coloring ***** */
.forumrollover
{
background: #555555;
color: #CCCCCC;
font: verdana;
}
You might not need the color and font lines, I have them in there to fix the bug I posted a few posts up. If you're not using the verdana font, you definitely don't want that in there.
Change the #555555 to whichever color you want to change to.
Then in the template edits, change:
Code:
onmouseover="this.className='alt2Active';"
to
Code:
onmouseover="this.className='forumrollover';"
That way if you every want to change it, just edit the CSS entry.