MyBB Community Forums

Full Version: Change letter color on this theme?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello!

I would like to know how I can change the color of this theme that I have in my forum.

As you can see it's in black, and I would like to change it in white color. Cause in black it's hard to see.

Waiting for answers!!

Thanks!!

I'm using this theme: http://mods.mybb.com/view/sliced
In AdminCP > Templates & Styles > Themes > (click the theme) > global.css and search for .navigation and change the color attribute to "white":
.navigation {
color: white;
font-size: 13px;
font-weight: bold;
}

You might also need to change the color of ".navigation .active" .
Open global.css , and find;
.navigation {
	color: #000000;
	font-size: 13px;
	font-weight: bold;
}

.navigation a:link {
	text-decoration: none;
}

.navigation a:visited {
	text-decoration: none;
}

.navigation a:hover, .navigation a:active {
	text-decoration: none;
}

.navigation .active {
	color: #000000;
	font-size: 13px;
	font-weight: bold;
}


and Change it to;
.navigation {
	color: #fff;
	font-size: 13px;
	font-weight: bold;
}

.navigation a:link {
 color: #fff;
	text-decoration: none;
}

.navigation a:visited {
 color: #fff;
	text-decoration: none;
}

.navigation a:hover, .navigation a:active {
 color: #fff;
	text-decoration: none;
}

.navigation .active {
	color: #fff;
	font-size: 13px;
	font-weight: bold;
}

Really helpful mate, it works like a charm!!

Do you have any idea about changing this too? It's in black and it's annoying too, I can't find it.

In global.css search for #copyright and also change the color attribute of it.

It might be a idea good to change the color attribute of the container div itself. This would solve most of the color problems. Search for #container in global.css and change the color attribute.
Yeah that way it's the best. Works well.

And my last question. Changing this color.

In global.css , find;
.pagination {
	font-size: 11px;
	padding-top: 10px;
	margin-bottom: 5px;
}
and add a color attribute to the style like this;
.pagination {
	font-size: 11px;
color: #fff;
	padding-top: 10px;
	margin-bottom: 5px;
}

and in;
.pagination .pagination_current {
	background: #F5F5F5;
	border: 1px solid #81A2C4;
	font-weight: bold;
	color: #000;
}
Change the color code, like this;
.pagination .pagination_current {
	background: #F5F5F5;
	border: 1px solid #81A2C4;
	font-weight: bold;
	color: #fff;
}
No.

It was:

.pagination .pagination_current, .pagination a {
	color: #fff;
	padding: 2px 6px;
	margin-bottom: 3px;
}

hehe, now it seems great.

Oh btw I forgot this...

This text is in black too and I don't find the css


Please It's the last help I need.

Thanks for this support guys. Really apreciated.

Bumping this, I really need it.
What is the URL to your forum? I don't believe it is a standard MyBB element.
Pages: 1 2