MyBB Community Forums

Full Version: Gap between Logo and right side
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have a big gap between my logo and the right side.. how to fix that? like put another image or something... how to put 2 images near each other in logo section
URL?

If you want to have another picture next to the logo in the template header instead:
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="images/solar-rye/thead_bg.png" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}"/></a></div>

give:
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="images/solar-rye/thead_bg.png" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}"/><img src="images/theme_name/picture.jpg" alt="" /></a></div>

Remember, however, that the code you need to change the path to the pictures and upload images to the server. Smile