MyBB Community Forums

Full Version: Changing Certain link colors
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys, Im trying to change certain link colors but changing the color in the CSS stylesheet changes all of the links.

What I want to differ is the thread link colors compared to the actual "Posters" color.

Example:

"This is a thread"
God Awful

(You can also see it visually here http://gdgforums.com )


Both of those are the same color and im wondering how I can change each individually.
For the author add this to the themes global.css:
.author a:link, .author a:visited, .author a:hover, .author a:active {
color: #CCCCCC;
}

Or this if you want a different color on mouse hover:
.author a:link, .author a:link {
color: #CCCCCC;
}

.author a:hover, .author a:active {
color: #CFCFCF;
}