MyBB Community Forums

Full Version: Align the logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am sure that this is a really easy thing to fix, I am just being dumb. For the life of me I cannot make my logo move to where I want it.

A picture speaks better than words, so here one is...
[Image: logoalignbl7.th.gif]

I am using V1.4.1. Anybody able to help me with this silly little thing?
Edit your Header template (Header Templates, header) and make the following change.

Find:
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>

Replace with:
<div class="logo" style="text-align: right;"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
Thanks, but the change you recommended just aligned the right hand edge of the Logo with the right hand edge of the Icons. The Logo is still above the group of icons...

[Image: logorightpi5.th.gif]

What I want to do have the logo justified on the left hand side of the page, but be on the same line as the list of icons.
(2008-09-05, 01:23 PM)sicjoke Wrote: [ -> ]What I want to do have the logo justified on the left hand side of the page, but be on the same line as the list of icons.

Oh, I think I get what you mean now.

[attachment=10927]

First you edit your theme's global.css.

Find:
.menu img {
	padding-right: 5px;
	vertical-align: top;
}

Replace with:
.menu img {
	padding-right: 5px;
	vertical-align: bottom;
}

Replace your header template with this:
<div id="container">
		<a name="top" id="top"></a>
		<div id="header">
			<div class="menu">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></li>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>
			</div>
			<hr class="hidden" />
			<div id="panel">
				{$welcomeblock}
			</div>
		</div>
		<hr class="hidden" />
		<br class="clear" />
		<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			<navigation>
			<br />