Help With Hover Color »  Show posts from    to     

Icy Phoenix


phpBB 3 MODS And Styles (Not Compatible With phpBB 3.1) - Help With Hover Color



a22burnett [ Wed 26 Aug, 2009 00:20 ]
Post subject: Help With Hover Color
It's probably on here somewhere, but I've been looking and trying things that have only caused me problems.
My website is here: http://www.ps3team.us/
The forums are here: http://www.ps3team.us/forums/phpBB3/ (don't mind the banner, it's temporary)
Forums Style: Black Pearl
phpBB Version: 3.0.5

3) I'm having trouble trying to change the color of the text, when you hover over a clickable forums link, from red to yellow. For example when you put your mouse over "Team Discussion" the font turns red, I want to make that turn yellow instead. I'm not sure what to change for that.

Thanks again.


spydie [ Wed 26 Aug, 2009 17:36 ]
Post subject: Re: Help With Hover Color
have a look for this in your style css
find:
Code: [Hide] [Select]
a:hover {
color: #DD2222;
text-decoration: underline;
}


replace with:
Code: [Hide] [Select]
a:hover {
color: #FFFF00;
text-decoration: underline;
}


and this
find:
Code: [Hide] [Select]
a.forumlink:hover, a.forumlink:active {
color: #DD2222;
font-family: Verdana, "Trebuchet MS", "Lucida Grande", Helvetica, Arial, sans-serif;
font-size: 1.2em;
font-weight: bold;
text-decoration: underline;
}



replace with:

Code: [Hide] [Select]
a.forumlink:hover, a.forumlink:active {
color: #FFFF00;
font-family: Verdana, "Trebuchet MS", "Lucida Grande", Helvetica, Arial, sans-serif;
font-size: 1.2em;
font-weight: bold;
text-decoration: underline;
}



That should do it


a22burnett [ Wed 26 Aug, 2009 21:03 ]
Post subject: Re: Help With Hover Color
Once again you guys have solved my problem, thank it's very appreciated.


spydie [ Wed 26 Aug, 2009 21:05 ]
Post subject: Re: Help With Hover Color
You´re welcome.

Someone mark this as solved please




Powered by Icy Phoenix