MyBB Community Forums

Full Version: How do I change the text color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I change the text color of these:
[Image: Capture-13.png]

Also, how do I change what color links are?
Usually you would just have to change something similar to this in your global.css:

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

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

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

But if you want a more detailed response you'll need to provide us your forum URL.
This didn't work, anyone got any other ideas? :L
It's very hard to give you a specific answer when we don't have a link to your forum. Your theme could be pretty different from the default, and without the source we won't be able to guide you.
in your global.css find

Quote:.menu ul a, .menu ul a:link {
color: #4d4d4d;
padding: 5px 10px;

text-decoration: none;
}

.menu ul a:visited {
color: #4d4d4d;
text-decoration: none;
}

.menu ul a:hover, .menu ul a:active {
background: url(../../../images/UniqueKnight/thead_bg.gif) repeat-x;
color: #575757;
padding: 5px 10px;
border: 1px solid #242424;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
text-decoration: none;
font-weight: bold;
}

and replace with

Quote:.menu ul a, .menu ul a:link {
color: #ffffff;
padding: 5px 10px;

text-decoration: none;
}

.menu ul a:visited {
color: #ffffff;
text-decoration: none;
}

.menu ul a:hover, .menu ul a:active {
background: url(../../../images/UniqueKnight/thead_bg.gif) repeat-x;
color: #575757;
padding: 5px 10px;
border: 1px solid #242424;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
text-decoration: none;
font-weight: bold;
}

This will change link colors to white (on hover it will remain the same - if you want to change link color on hover then edit color value under .menu ul a:hover, .menu ul a:active from #575757 to #ffffff or any other that you want).
Thanks Johnny S! Really helped me out!