MyBB Community Forums

Full Version: Creating a theme but having a moment!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey Guys,

Not sure whats up with me today but having problems with the most simple things Rolleyes

I am trying to change the Link Text colour of the Copyright at the bottom of the forum.

I have edited the template like this:
{$lang->powered_by} <a class="linkinvert" href="http://mybb.com/" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a class="linkinvert" href="http://mybb.com/" target="_blank">MyBB Group</a>.<br />

As you can see above I have added a class tag to the links.

In the style sheet I have added the following:
.linkinvert {
        color: #859EB5;
}

What have I done wrong or missed? as its not showing up?
.linkinvert a:link,  .linkinvert a:visited {
        color: #859EB5;
}
Just tried that but not over riding the standard link colours Sad
<span class="linkinvert">{$lang->powered_by} <a href="http://mybb.com/" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a href="http://mybb.com/" target="_blank">MyBB Group</a>.</span><br />
Wahaaaay!

That worked perfect thanks Smile