MyBB Community Forums

Full Version: Image Alignment in Post Body
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I want my image attachments to be center-aligned horizontally in the post body, without changing the default left-align property of text. the img tag in global.css but my knowledge is too little so was unable to achieve the desired result. I tried twiching Please advise how to do it.

Thanks,
Ijlal

PS. I am using version 1.4.11
Try putting this code into your global.css file:
.post_content img {
        display: block;
        margin: 0 auto;
}
(2010-04-02, 03:08 PM)computergeek67 Wrote: [ -> ]Try putting this code into your global.css file:
.post_content img {
        display: block;
        margin: 0 auto;
}

Thanks buddy! This is one great thing about MyBB I love; help is never too far away!

Ijlal
You're welcome. Glad I could help.