MyBB Community Forums

Full Version: how to set theme width
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello,

mybb usualy set theme as 100% width
how to set width forum in 1000 px

thank you
for MyBB stock theme you can adjust theme width through changing width property for class wrapper in global.css

default style properties for wrapper class
.wrapper {
width: 85%;
min-width: 970px;
max-width: 1500px;
margin: auto auto;
}
@.m.

i use duende theme
is there same step in duende?

i change to this
.wrapper {
width: 85%;
min-width: 970px;
max-width: 1000px; ----------1000px
margin: auto auto;
}

but i find not any change
for Duende theme you have to edit width properties for div ID #mainwidth
#mainwidth {
    line-height: 1.4;
    margin: 60px auto auto;
    text-align: left;
    width: 90%;
}
yes, it can change to 1000px

but how about the header, i still 100%???

thank you @.m. for the support