MyBB Community Forums

Full Version: Change specific text colour at the bottom of the page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys,

I have problems with the text colours of links at the bottom of my pages (index & threads), because the normal link colour is blue and my container background is blue Wink

Here is a screenshot with the problem, and one screenshot where I marked the links with my mouse:

[attachment=30771][attachment=30772]

I dont want to change the bg, so I tried changing the link colour in the global.css

a:link {
color: #026CB1;
text-decoration: none;
}

a:visited {
color: #026CB1;
text-decoration: none;
}

a:hover, a:active {
color: #000;
text-decoration: underline;
}

The problem is now, that these codes also change the colour of every other link (e.g. Mod CP, Usernames in Shoutbox, and other links) in my forum -.-

I need a way to only change those links at the bottom of my page, the ones that show the mybb copyright and the thread options.

Can you help me?
Thanks a lot Wink
What is your URL?
(2014-01-03, 06:02 PM)marcus123 Wrote: [ -> ]What is your URL?

I was able to change it:

I added this code in the global.css
#copyright a{
    color: #fff;
}

and this code in showthread.css
ul.thread_tools a{
    color: #fff;
}

Wink
Good for you. So no further help needed right?
(2014-01-03, 06:09 PM)marcus123 Wrote: [ -> ]Good for you. So no further help needed right?

Nope, not for now. Though Im very new to Admin and webhosting life, so I will ask away once the next problem occurs Wink