MyBB Community Forums

Full Version: Global.css padding question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
By default we have "padding: --px" whatever number you put in "--"

But can we change the left padding and the right padding separately?

I only want to change the right side padding...decrease it slightly than the left side.

Thanks.
padding: 10px 15px 20px 25px;
10px top, 15px right, 20px bottom, 25px left.

padding: 10px 15px 20px;
10px top, 15px right & left, 20px bottom.

padding: 10px 15px;
10px top & bottom, 15px right & left

padding:10px;
10px left, right, top & bottom
Thanks AJS, I'll have to experiement now. Smile