MyBB Community Forums

Full Version: Font Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Which stylesheet is the font color for the subforums (i.e general, members)

See image below
global.css >> a:link

If change that it will change the majority of links on the site, if you want to just change the forum links you'll need to edit the forumbit_depth2_forum and forumbit_depth2_forum templates and create a new class in global.css

Hey guys, I'm still having trouble editing the links...

I want to change the color of the Forum Posters link.


Example:

Where do you live?
11-03-2010 04:02 PM
by Droden

Both of those are the same color along with the actual forum links.

It seems that I need to isolate "{$lastpost_profilelink}" but when I attempt to add a seperate class to it, it does not work.

Help appreciated!
HTML (forumbit_depth2_forum_lastpost)
<span class="smalltext">
<a href="{$lastpost_link}" title="{$full_lastpost_subject}"><strong>{$lastpost_subject}</strong></a>
<br />{$lastpost_date} {$lastpost_time}<br />{$lang->by}</span><span class="author"> {$lastpost_profilelink}</span>

CSS (global.css)
.author a:link, .author a:visited, .author a:hover, .author a:active {
color: #CCCCCC;
font-size: 11px;
}