MyBB Community Forums

Full Version: Put a boarder around posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone,

Around my posts and my post controls there's no boarder and it makes it look horrible.

You can see here, how do I add a boarder to this? 

http://prntscr.com/bngmqk
Link to your forum please.
You need to modify postbit and add a class to wrap the content inside a div class and add border element.
(2016-07-01, 12:26 PM)WallBB Wrote: [ -> ]Link to your forum please.
You need to modify postbit and add a class to wrap the content inside a div class and add border element.

http://promotionbb.com/index.php
(2016-07-01, 12:35 PM)Dizzygaming Wrote: [ -> ]
(2016-07-01, 12:26 PM)WallBB Wrote: [ -> ]Link to your forum please.
You need to modify postbit and add a class to wrap the content inside a div class and add border element.

http://promotionbb.com/index.php

In your css file, search and replace .post.classic .post_content with below content

.post.classic .post_content {
    border: 1px solid #cccccc;
    float: left;
    padding: 0 1% 5px;
    width: 79%;
}

Notice the border code, it adds border.
You can add anywhere you want.

Regards
WallBB