MyBB Community Forums

Full Version: Padding!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi everyone

I'm trying to reduce the padding on my forum.

I've managed it for the header in #container but it hasn't changed the main forum.

I've inspected the element but am confused at the result.

I've attached a screenshot showing the two side margins that I need to make smaller.

I'm guessing it's in a template somewhere but not sure where.

Thanks

Phil

vwcamper.net/forum
If you browse using Chrome you can right click an element and hit Inspect Element. It will then show you all CSS and inline style rules that are affecting it.
As stated dragonexpert, i did that and couldn't understand it!
In global.css find:

.content or #content

ADD:

margin: 0 50px;

Change 50px if you need to make it pretty Smile
Adding that made no difference
Hard refresh baby! What is your URL my man?
Marcus

Your code will make it narrower but not wider!

vwcamper.net/forum
Or install firebug Smile


Change:

#container

width: 1000px;

You should use max-width and min-width


Sorry what you need is padding not margin Smile:

#container {
padding: 0 90px;
}
Thanks again for your kind reply but that makes no difference.

It will make it narrower but not wider.

Here's my .css with your suggestion.



[attachment=31700]
Pages: 1 2