MyBB Community Forums

Full Version: Help me!!!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to change the font color of links in postbit, hover, link and visited font color without affecting header and external links.

I want only the links in postbit font color to change?

Thanks
Hi,

just add this css for that part:


#posts .post_content a {
WHATEVER-CSS-YOU-WANT;
}

#posts .post_content a:hover {
WHATEVER-CSS-YOU-WANT;
}

#posts .post_content a:visited {
WHATEVER-CSS-YOU-WANT;
}