MyBB Community Forums

Full Version: How to do this?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello brothers I have used a theme in mybb but I want to some editing in it i don't know how to let me give you a list

1)I have changed the themes logo in their files but it;s not changing http://rs-sagaming.tk/Forums/
2) I want to make player stats u see how it has my name on the top of the post thread and no the side, how do I adjust it so it goes to the left i wanna make this one like this 
[attachment=38818]
to
[attachment=38817]
you go to you're admin panel then Home » Board Settings » Show Thread Options >
Post Layout > display classic
there's no board setting option
Use these with custom CSS

/* Stats */

.post .post_author div.author_statistics {
    float: right;
    font-size: 11px;
    padding: 3px 10px 3px 5px;
    color: #666;
    line-height: 1.3;
    float: left;
}

/* Info */

.post .post_author div.author_information {
    float: right;
    padding: 6px 8px;
}


The result will be as attached

[attachment=38819]
Where to put it?
can you make a file and then send me
as zyra suggested, you have to change the setting at forum admin panel.

forum admin panel >> configuration (settings) >> show thread options >> Post Layout >>
select Display posts using the classic layout AND save settings

user control panel also has similar setting at Edit options (Thread View Options --> classic mode)

so you also have to change related setting at your user control panel.

see postbit layout details (MyBB 1.6.x)

to make it selected layout for all members, see this guidance => force / remove postbit style
or you can use Force Postbit Layout plugin (you may have to change the plugin compatibility)
(2017-05-05, 10:19 AM)Bro12 Wrote: [ -> ]Where to put it?
can you make a file and then send me

In ACP, there is an option to add custom css. Copy paste the code into it.