MyBB Community Forums

Full Version: Resize the forum bit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi. I'm looking to resize the width from forum. Atm, the forum looks likeĀ [Image: 98l7haJ.png]and i want to resize them to something like that
[Image: ce5SBPU.png]
Can you share your forum URL?

Anyways I will give you an example.
You need to write a wrapper class to contain the width.
For Example -
<div class="container">
<!-- your new wrapper -->
<div class="wrapper">
#Content goes here
#Closing tag for the wrapper
</div>

CSS that you need to add -
.wrapper {
.max-width: 768px; #Example width, you c
}

Regards
WallBB
https://wolfxcsgo.ml/ but it's a kinda of a private forum, but, i've been using Emerald dark theme as an "source". https://community.mybb.com/mods.php?acti...w&pid=1301

I can send u my forumbit_depth1_cat and the others if this help you.
By default your theme already has a wrapper. Head over to /admin/index.php?module=style-themes , then pick your theme (Emerald Dark or similar depending on what you named it)

Go inside the global.css and hit Advanced Mode, then search for .wrapper. At the moment there should be a
width: 90%; <

Change it to i.e. 768px as WallBB suggested. (Or tune the % down depending on responsiveness, i.e. I found that around 60-70% gives a similar result to what you want)..
Thanks both of you. I did it!