MyBB Community Forums

Full Version: Move banner
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to move my banner a little bit at right, (i don't want to center my banner).

http://pattayarun.fr/forum/index.php

How could i do this ?
The simplest way for this is to add an inline style into banner img tag.

Go in ACP to Templates & Styles >> Templates >> YOUR USED THEME >> Header Templates >> header and search for:
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>

replace this part with:
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" style="margin-left: 150px"/></a>

You can edit the number for margin-left style as you like.

Save changes and reload forum frontpage.
Thanks Smile