MyBB Community Forums

Full Version: Bleeding of default mybb onto my template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: b183a75402.png]
So for some reason, the blue of the default mybb theme is showing up in my custom theme. Those blue spots are supposed to be orange. Does anyone know a quick fix, or do I need to get one of the small selection of 1.8 themes?
There is probably a background image which can either be removed or modified.
Any idea on where to do that?
it can be .thead class in global.css style sheet of the theme
This is in the global.css
.thead {
background: #d56c2c url(images/dawn/thead.png) top left repeat-x;
color: #ffffff;
border-bottom: 1px solid #9a4e20;
padding: 8px;
}


tf2app.com/forum

My forum btw if looking at it would help.
This is in the global.css
.thead {
background: #d56c2c;
color: #ffffff;
border-bottom: 1px solid #9a4e20;
padding: 8px;
}
That fixed most of it. Just this blue on the bottom now.

[Image: c249f72614.png]
Same issue. Look at the global css. If you see something like url(images/dawn/ then its going to do that color overlay.

Look at how I edited your css posted above:

background: #d56c2c url(images/dawn/thead.png) top left repeat-x;


vs

background: #d56c2c;

See what I did?
Thanks. There were a lot of spots that had that in there. I removed them now. Now if I could just make that read/unread thread icon show back up.
look for the css variable gotounread (or something like that) - look in all your css Smile