MyBB Community Forums

Full Version: sections' colours
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i change the colour of sections?
Ok, you're going to have to be a little bit more specific RolleyesRolleyes

What 'section' do you want to change, exactly??
Ina forum there are the section for example here:

Annoucements
General Support
Plugin & Codes


The colour is blue, how can i change the colour of the name of the sections?:d:d:d
Based on this, I believe it's .trow1 and .trow2 in global.css
My friend tryed to edit .trow1 and .trow2 but the colour stayed the same.
Well I just changed it on my test forum fine.
(2009-02-09, 03:13 PM)Giangy94 Wrote: [ -> ]My friend tryed to edit .trow1 and .trow2 but the colour stayed the same.
Try hitting CTRL+F5 and see if it works.
By 'sections' do you mean the background of the catagory or the actual link colour?

If it's the background of the catagory, you need to replace the 'thead_bg.gif' file in your images directory with a more suitable file.

If it's the link colour then you have to edit the css of the file:

Go to: Admin CP-> Templates & Style-> (Your template name) and click on global.css .
Then, click on advanced mode and where it has:

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

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

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

Replace it with the colour you would like in the parts where it says 'color: #'.

NOTE: You will have to look up HTML colour codes.

If you wanted all the links red you could use:

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

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

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

Hope this helped!

Jlong1