MyBB Community Forums

Full Version: Forum width problem again
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I search all topics but not helpful for me;

we want to change forum width but our theme hasn't got #container or .wrapper in global.css so we couldnt find to change

Our page: http://bit.ly/2HxRH9I

I added .wrap {
    width: 80%;
    margin: 0 auto
}

But can not change anything 

Thank you
Search for this in your templates:

<div class="page container">

and replace it with:

<div class="page container" style="
    width: 80%;
">

Don't know if this is what you're looking for exactly though, your theme is rather weird and seems to have a lot going on, Lots of "Wrapper" and "Container" in the code.
(2018-02-21, 11:26 PM)Kioshi Wrote: [ -> ]Search for this in your templates:

<div class="page container">

and replace it with:

<div class="page container" style="
    width: 80%;
">

Don't know if this is what you're looking for exactly though, your theme is rather weird and seems to have a lot going on, Lots of "Wrapper" and "Container" in the code.

Yeah this theme has a lot of containers not specific container though. I think one by one I have to write ''width: 80%'' what are you think?