MyBB Community Forums

Full Version: How can I stretch the default theme to the full width of my screen?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I stretch the default theme to the full width of my screen? Like the Cerise theme by Vintagedaddyo. I hope that I am explaining it alright. The default theme kind of keep space in the two sides, how can I remove them?
Change in theme global.css:
.wrapper {
 width: 85%;
 min-width: 970px;
 max-width: 1500px;
 margin: auto auto;
}

to

.wrapper {
 width: 100%;
 min-width: 970px;
 margin: auto auto;
}
"width" and "margin" can also be dismissed.

Basically you can totally remove CSS class ".wrapper" or leave this empty... Then everything is streched to full screen width.

[ExiTuS]