MyBB Community Forums

Full Version: Fix Mesage alignment in postbit?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I noticed today that the mesage part of the postbit (the bit where the actual text of the post goes) is aligned too close to the edge of the container.

In my forum my posts look like this:

[attachment=38450]

The exact same post in another forum that uses a similar theme to mine shows up like this:

[attachment=38451]
What is the url to your site with a post?

We may just need to add some padding to a certain class. Without seeing the site though, I'm not sure which class to add the padding to.
Here is the post on my website: https://ontic-philosophy.com/Thread-Capi...it-Finance
Here is exactly the same post on another website: http://wizardforums.com/Thread-3-Capital...al-Markets
In global.css find:
.post_body {
font-size: 14px;
padding: 12px 0;
}

And replace with:
.post_body {
font-size: 14px;
padding: 12px;
}

Then hard refresh your browser/that page and it should work. Smile
Increase the padding in the .post_body section of your CSS.

Something like this should work.
padding: 8px;

Edit: isoldehn beat me to it Smile
Thanks guys, I will try it out tomorrow.

Sorted, thanks.