MyBB Community Forums

Full Version: Stop post content moving when screen re-sized?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Basically the problem is when the screen is zoomed in the post content goes underneath the post author to the right, also this is the default for messages, is there anyway to fix this? 

forum url: http://forumauthority.com/mybb/

[Image: 397c774e51198bfb60bcda5a40e06a90.gif]

Messages:
[Image: df7e259f125645e4909d0bf61e41bacc.png]
Forum Addres?
(2015-12-09, 05:20 PM)X3nO Wrote: [ -> ]Forum Addres?

apologies, thread updated with link.
.post.classic .post_content {
    float: right;
    width: 79%;
    background: #fff;
    border: 1px solid #DDDDDD;
    padding: 14px;
}

Change the width to 78%.
^That works but makes it slightly different. If you don't want that, change the margin of the postbit from 1% to 6px instead.


.post.classic .post_author {
    border: 1px solid #DDD;
    float: left;
    width: 17%;
    border-radius: 2px;
    margin: 0px 6px 15px 0px;
}
Perfect, Thank you very much guys!