MyBB Community Forums

Full Version: Square theme switch places of menus
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello! I've problem with my forum.
I want to switch places of usermenu(welcome,shadow etc.) and menu(search,members etc.). Im trying already few hours to change sizes etc but cant fix it. Im new to mybb.
I want usermenu be on the right side and menu in the center.
Thanks for answers!

link: http://www.rise-online.net/index.php

[Image: NV5hgml.png]
Edit your header_welcomeblock_* templates (for guest and members).

Find this menu block:
<div class="menu">
<ul>
...
</ul>
</div>

and move it to underneath usersection block:
<div id="panel">
<div class="wrapper">
<div class="news">...</div>
<div class="usersection">...</div>
<div class="menu">...</div>
</div>
</div>

[ExiTuS]
It worked! Thank you very much! Take care!