MyBB Community Forums

Full Version: Change Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How Can I change color of the font in the main menu for example here

when you go back to main menu of forum

MyBB 1.4 General Support
MyBB 1.4 Bug Reports
MyBB Suggestions and Feedback
Merge System for MyBB 1.4

The header of them threads there blue here and on my forum and I want to change them to red?
How Do I change the color of the for example..

MyBB Community Forums / MyBB Resources / Themes and Templates / Discussion & Support / Change Color


At the top?
Go to:

1. Your theme
2. Global.css
3. Advanced Mode

Find:

Quote:.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: small;
font-weight: bold;

Replace with:

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

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

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

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

.navigation .active {
color: #000000;
font-size: small;
font-weight: bold;

And edit the color: #000000 to what colour you want it to be. (I've highlighted in bold black what you need to change mate.

Hope this helps.