MyBB Community Forums

Full Version: Default Theme Colour change
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All, can someone tell me how to change this colour?
Which code do I need to change? (Default Template)

Thanks!

See Example picture:
in global.css

change the background color of the .thead class
You will find it in global.css maybe line 365

.thead {
background: #0066a2#l url(images/thead.png) top left repeat-x;
color: #ffffff;
border-bottom: 1px solid #263c30;
padding: 8px;
}

Replace #0066a2 with your colour
(2022-01-20, 03:38 PM)PARADOXP Wrote: [ -> ]in global.css

change the background color of the .thead class

(2022-01-20, 03:40 PM)Mahfuz Wrote: [ -> ]You will find it in global.css maybe line 365

.thead {
background: #0066a2#l url(images/thead.png) top left repeat-x;
color: #ffffff;
border-bottom: 1px solid #263c30;
padding: 8px;
}

Replace #0066a2 with your colour

Thanks... really appreciate it Smile

Regards

(2022-01-20, 03:40 PM)Mahfuz Wrote: [ -> ]You will find it in global.css maybe line 365

.thead {
background: #0066a2#l url(images/thead.png) top left repeat-x;
color: #ffffff;
border-bottom: 1px solid #263c30;
padding: 8px;
}

Replace #0066a2 with your colour

Found it in Twilight CSS... forgot I was using this...

Thanks