MyBB Community Forums

Full Version: Topics with no background??? :'(
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi! I am using the default theme of the myBB 1.8 , and i am changing it to the way I want.

Yesterday, I follow this topic http://community.mybb.com/thread-40093.h...ht=postbit , to change the postbit to the left side, and it worked. But now this is happening:

https://i.gyazo.com/e2aa20f13b628b87ab23...77ec1d.png

So, the messages of the topics just have no background...

I hope you can help me fix it!  Blush
may i have your forum url...
One option is:

Go to your global.css. Find posts_container (in your case, line 1048) and add below padding: 0;
background: #ccc;

(change #ccc to the color you want). So it should look like this:

#posts_container {
padding: 0;
background: #ccc;
}

And when you are in global.css, you can at the same time fix your navbar. Look at line 519 for .navigation and add
padding-top: 2%;

(you can also use pixels and not prosents, example 5px.)

Should look like this:

.navigation {
color: #333;
font-size: 12px;
pading-top: 2%;
}
Thanks it worked, after I clean the cache... Thank you!

One more question.. it also happens here..
https://gyazo.com/1b42739ca7ce13df50cb26e73318db3e
You are allowed to give a reputation + he he

But the gyazo is referring to an image, so the image was taken without a background.
try this... remove/comment out the above suggested codes... just add this to the end of global.css of your theme... save it and Hard Refresh (Ctrl+F5) the forums to check the changes..


#content .wrapper {
    background: #ffffff;
}
Hard to see that #content .wrapper will fit his need. Then he will have to change a bit more to make the navbar work. See thumbnail

[attachment=35347]
(2015-10-10, 08:41 AM)BaggerHD Wrote: [ -> ]Hard to see that #content .wrapper will fit his need. Then he will have to change a bit more to make the navbar work. See thumbnail

for that he need to increase the height of #header in global.css to 120px (currently 80px).. these two changes should be suffice... else he will have issues on different pages (as in post #5) and need to add bunch of codes for each pages separately...