MyBB Community Forums
Default Theme Colour change - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Extensions (https://community.mybb.com/forum-201.html)
+--- Forum: Themes (https://community.mybb.com/forum-103.html)
+---- Forum: Theme Support (https://community.mybb.com/forum-10.html)
+---- Thread: Default Theme Colour change (/thread-234747.html)



Default Theme Colour change - Shooting - 2022-01-20

Hi All, can someone tell me how to change this colour?
Which code do I need to change? (Default Template)

Thanks!

See Example picture:


RE: Default Theme Colour change - PRÂDÏP - 2022-01-20

in global.css

change the background color of the .thead class


RE: Default Theme Colour change - Mahfuz - 2022-01-20

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


RE: Default Theme Colour change - Shooting - 2022-01-20

(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