MyBB Community Forums

Full Version: Set width of default theme to a fixed size and add a background image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi Guys and Gals,

I'm wondering how would I fix the width of the default mybb template to a similar size to this mybb.com community theme and add a large background to feature behind it?

At the moment my default theme template is fluid (http://titanfallforums.net).

Thanks in advance. Any help telling me what to change and where I would appreciate it!
#container

width: ~60%
body {
background: #efefef url(http://yoursite.com/images/big_image.jpg) top center no-reprat;
.
.
.
}

#container {
width: 940px;
.
.
}
Wouldn't min-width be better effone?
That way users can still make it as big as they want but not as small as they want
^^ yes, but that is not 'fixed' width; by definition, what OP is looking for ...
Thanks for your help everyone!