MyBB Community Forums

Full Version: How to change the colour of these?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Upload this image to your
mybb installation/images/blockblue/
The red is .thead.

Find:
.thead {

Add:

color: #fff;
(2012-12-23, 12:21 PM)Dermoid Wrote: [ -> ]
(2012-12-23, 11:33 AM)mmadhankumar Wrote: [ -> ]can you provide your forum url Huh

Oh right, sorry. http://skidlet.org

thanks...

goto global.css in the themes from Admin CP and find

.thead {
        background: #9f0909 url(../../../images/blockblue/thead_bg.png) top left repeat-x;
	color: #390400;
	border: 1px solid #5c0000;
	text-shadow: #000000 0px 1px 0px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;

}

in this change color: #390400; to any color you want... if you want it in white then change it as color: #FFFFFF;
(2012-12-23, 01:56 PM)mmadhankumar Wrote: [ -> ]
(2012-12-23, 12:21 PM)Dermoid Wrote: [ -> ]
(2012-12-23, 11:33 AM)mmadhankumar Wrote: [ -> ]can you provide your forum url Huh

Oh right, sorry. http://skidlet.org

thanks...

goto global.css in the themes from Admin CP and find

.thead {
        background: #9f0909 url(../../../images/blockblue/thead_bg.png) top left repeat-x;
	color: #390400;
	border: 1px solid #5c0000;
	text-shadow: #000000 0px 1px 0px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;

}

in this change color: #390400; to any color you want... if you want it in white then change it as color: #FFFFFF;
Thank you!
Pages: 1 2