MyBB Community Forums

Full Version: Change Forum Link Hover Color to X
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can you change the forum links on the index of your forum?
http://postspawn.3ftp.org

Change the color lime into color white with white glow?
Find in global.css:

a:hover {
color: #000;
text-decoration: underline;
}

Change the color hex code.

For white glow, add:

text-shadow: 0 0 10px #fff;
Thanks, it works Smile