MyBB Community Forums

Full Version: color Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, i want to change the color of the text of my forum

I am using the default mybb theme

I have already changed the global.css file to change the text color of certain areas, but i want to keep that...but change the Header (UserCp - AdminCP etc... link colors)

how do i change just those links without changing the others too
In your global CSS, look at #panel .links

i added this to it

color: #026CB1;
text-decoration: none;

but its still the Grey Color
Sorry. I just made the same mistake I did the first time I tried to change those colors.

Go to global CSS and into advanced editor mode. Find:

#panel .links {
	color: #f7f6f6;
	margin: 0;
	float: right;
}

After it add:

#panel a:link {
	color:  #026CB1;
	text-decoration: none;
}

#panel a:visited {
	color:  #026CB1;
	text-decoration: none;
}

#panel a:hover, #panel a:active {
	color:  #026CB1;
	text-decoration: underline;
}



Yes! thank you so much! it worked

Sorry but what do i add to edit the footer links to the same color as well?

This is what i have for the Footer in global.css

.tfoot {
background: #202121 url(images/1/thead.png) top left repeat-x;
color: #026CB1;
border-top: 1px solid #fff;
padding: 6px;
}

.tfoot a:link {
color: #026CB1;
text-decoration: none;
}

.tfoot a:visited {
color: #026CB1;
text-decoration: none;
}

.tfoot a:hover, .tfoot a:active {
color: #026CB1;
text-decoration: underline;
}

but it still displays the links as #ffffff
Look good to me.

1. Did you refresh your page?

2. Did you add those codes or did you use the existing ones. If you added these, they could be interfering.
no i have just changed the colors to what i wanted
Could you post a link?