MyBB Community Forums

Full Version: Change the size of the forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to make my forum broader?

[Image: rj34lf.png]
can you share your forum URL to assist you better?
(2016-12-13, 03:47 AM)Dark-Power-Invader Wrote: [ -> ]can you share your forum URL to assist you better?

http://zyan-dev.rf.gd/forum/index.php
change the min-width and max-width for container(this should be about line 49 and 50) in your theme's global.css.
OK, look at the CSS for the wrapper class in global.css:
.wrapper {
 width: 85%;
 min-width: 970px;
 max-width: 1500px;
 margin: auto auto;
}

width: 85% means it will try to be 85% of the parent container's width, but will always be at least 970px (min-width) and never more than 1500px (max-width). I'm not sure you want a max-width, or if you want to set it to 1600px instead (.85 * 1920 = 1632 for 1080p displays). The width will change based on window size, so play around for values that flow nicely.
i didn't understand how :/ i'm changing values but nothing happens
It is in container id in global.css file check line number 49 and 50, if you unable to do that then kindly send me your admin account details i'll do it for you.
Change

.wrapper {
width: 85%;

to like 65% and do hard fresh on forum (alt+f5) or clear cache.