MyBB Community Forums

Full Version: Change colour
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How can I change the colour off the text from black to white.
I mean the colours in the thread name?

Dees
It should be in your global.css which is located in your current theme.
That's what I think so.
But where?
Dees
It's called .tcat, but since they're links you're really looking for .tcat a:link and you'll probably need to change .tcat a:visited and .tcat a:hover, .tcat a:active too.
THat's not what I mean.
Please look at the attachment in post 1
First row are white.
Second row are black.

So where I can change the parameters.

Dees
(2010-08-26, 06:10 PM)dees Wrote: [ -> ]THat's not what I mean.
Please look at the attachment in post 1
First row are white.
Second row are black.

So where I can change the parameters.

Dees

I just told you that.
I did, but only the text in the welcomeblock changed.
I talk about the block in the new thread.
Were name are disccussion/auteur
Dees
Can we have a link to your forum?
I have send a PM.

Dees
Yep, as I said above change the .tcat classes in global.css, they're still all set to black.

.tcat a:link {
	color: #000000;
}

.tcat a:visited {
	color: #000000;
}

.tcat a:hover, .tcat a:active {
	color: #000000;
}

Change #000000 to whatever color you want it to be.
Pages: 1 2