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
(2010-08-26, 08:02 PM)AJS Wrote: [ -> ]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.

@AJS
Thank You for support.
This problem has solved.
But now a new question.
How to change the background colour.
[attachment=19595]
I mean from darkblue to lightblue.
Dees
Change the background for .tcat in global.css

.tcat {
	background: #0F5C8E url(images/bluecolor/thead_bg.gif) top left repeat-x;
	color: #F5F5F5;
	font-size: 12px;
}

It's using an image at the moment so you'll either need to upload a new image or remove the following and use a solid colour.

url(images/bluecolor/thead_bg.gif) top left repeat-x
Pages: 1 2