MyBB Community Forums

Full Version: Fixed width + Background + Border?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How i can make fixed width + background image + border on default theme? Just like this forum?

Thanks.
Open your theme's global.css and find;
#container {
...
}
and in width attribute try to add 940px like this;
#container {
	width: 940px;
...
}
(2011-05-20, 01:47 PM)Yaldaram Wrote: [ -> ]Open your theme's global.css and find;
#container {
...
}
and in width attribute try to add 940px like this;
#container {
	width: 940px;
...
}

Works great! Thanks, Big Grin
Thanks Wink