MyBB Community Forums

Full Version: Change the Bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,


i want to change the bar from this

[Image: 2z3vypk.jpg]

To sided like this

[Image: 2zirprl.jpg]


thanks : )
User CP>Options>Show Posts in Classic Mode
Thanks : )

and how to make it for all users ?
Home » Board Settings » Show Thread Options » First option Smile

If that doesen't work run this query:

If you want to put everybody on the classic postbit, run this query in PHPMyAdmin, or some other database manager:

UPDATE `mybb_users` SET `classicpostbit` = '1' WHERE `classicpostbit` = '0' 

If you want to put everybody on the horizontal postbit, run this query in PHPMyAdmin, or some other database manager:

UPDATE `mybb_users` SET `classicpostbit` = '0' WHERE `classicpostbit` = '1' 

Thank you : )