MyBB Community Forums

Full Version: Change link colors?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to change the link colors from Blue to Grey. Some of the link colors changed, but not all of them!

Screenshot:
http://screensnapr.com/e/GuwSSt.png


Help is very much appreciated!
I noticed in your global.css your missing a:

a {
color: #242424;
text-decoration: none;
}

Try adding that above line 13.
also make sure youve got a:visited a:hover the same colours
Edit in your global.css

a:link {
	color: #FFFFFF; < CHANGE
	text-decoration: none;
}

a:visited {
	color: #FFFFFF; > CHANGE
	text-decoration: none;
}
 //make sure these two are the same
a:hover, a:active {
	color: #FF0000; > CHANGE
	text-decoration: underline;