MyBB Community Forums

Full Version: how to change the colors of hyperlinks
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can I change the font color of hyperlinks so it only changes the links within a thread and nothing outside of it?
You could do something like this:

.post_body a:link, .post_body a:visited {
    color: #000000;
}

That'll change all links within posts to be black.
(2012-05-02, 07:06 PM)euantor Wrote: [ -> ]You could do something like this:

.post_body a:link, .post_body a:visited {
    color: #000000;
}

That'll change all links within posts to be black.

worked perfectly. thanks!