MyBB Community Forums

Full Version: Postbit help (new)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello, i'm new to actually using any kind of forum and html codes so all of this is very confusing... I finally got myself a theme and it's look very nice but there's a problem within this theme that many people that use my forums hate, and that's the postbit being on the right...

Here's an image of the problem.
[Image: 1407292146df148571b3f3f641e777eb.png]

So as it states in the screenshot, i want to get that from the right to the left just like all the other themes...
Any help on this ? Just like what codes to change etc.
Was it a free theme or a custom theme?
It looks like it was specifically designed to be on the right side:

http://i.imgur.com/nlUGm17.png

Try reading the "Readme" text file that should have been included. It normally contains information like that
I'm sure i knew that, but is there a way to change it?
Try reading the "Readme" text file that should have been included. It normally contains information like that
Never came with one.
You might want to post this in Themes -> Theme Support
Moved to Theme Support.
(2016-11-17, 12:40 AM)brents Wrote: [ -> ]Never came with one.

That download link is to an external site where you have to register to get the theme - doubt you will get much support here for it. In any case, with most themes the post_author floats left AND the post_content floats right. Your theme has it turned around.

So you need to find in global.css

.post.classic .post_author {
    float: right;
    background: #232c30;
    color: #FFF;
    width: 15%;
    margin: 0;
    margin-top: 5px;
    margin-right: 5px;
    border-left: 0;
    padding: 10px;
    min-height: 100%;
    border: 1px solid #1c2427;
    border-radius: 2px;
}

and

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

and change left to right and vice versa
Pages: 1 2