MyBB Community Forums

Full Version: How do I?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
One change the colors of the thread and category headers. by default is is blue. This [attachment=37906]
Two. How do I remove this.
[attachment=37905]
Three How do I hide the ModCp button and the AdminCP button to regular users?
(2016-11-28, 02:48 PM)KingLinux01 Wrote: [ -> ]One change the colors of the thread and category headers. by default is is blue. This
Two. How do I remove this.

Three How do I hide the ModCp button and the AdminCP button to regular users?

Edit .thead in global.css approx line 365

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

you can for example change it to

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

2. ACP > Settings > General Configuration

Turn Friendly Redirection Pages off

3. ModCP and AdminCP are by default hidden to regular users, so if they are showing for you it means you have edited your templates incorrectly.
(2016-11-28, 03:13 PM)Ashley1 Wrote: [ -> ]
(2016-11-28, 02:48 PM)KingLinux01 Wrote: [ -> ]One change the colors of the thread and category headers. by default is is blue. This
Two. How do I remove this.

Three How do I hide the ModCp button and the AdminCP button to regular users?

Edit .thead in global.css approx line 365

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

you can for example change it to

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

2. ACP > Settings > General Configuration

Turn Friendly Redirection Pages off

3. ModCP and AdminCP are by default hidden to regular users, so if they are showing for you it means you have edited your templates incorrectly.

Thank you a lot!