MyBB Community Forums

Full Version: Logo.png repositioning
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
1st. Thanks mybb for excellent software.

Alright guys I need help repositioning logo.png to the top and center of my board. I know its probably something really simple for you experts out there, but I am a noob I only know enough to be dangerous. This is my forum here
http://warlordguild.tk/ There is a HUGE logo that says warlord on it. Im trying to move it to the top of the page. Thanks in advance. Cool
where ever this is:
<img title="Warlord Guild Forums" alt="Warlord Guild Forums" src="http://warlord.hostei.com/images/gw2/logo.png">

Or something similar.. you're gonna move that up in your template edit section. Since templates are on the backend.. I really can't tell you where to move it.. however.. go to w3schools to read up on basics of html and css if you haven't already.
If you have, AND understand it, then dig through your templates thoroughly.. you'll know what to do. Unless your template is using a ton of weird unconventional stuff.. which yours doesn't seem like it does.
Thanks I did try searching the forum but didn't find a answer for my specific question. This is what in hte header template.
Quote:<div id="container">
<a name="top" id="top"></a>
<div id="header">
<ul id="nav">
<li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php">{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/index.php">Home</a></li>
</ul>
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
<hr class="hidden" />
</div>
</div>
<div id="containerc">
<div id="panel">
{$welcomeblock}
</div>
<hr class="hidden" />
<br class="clear" />
<div id="content">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}
<navigation>
<br />

This is whats in global.css
Quote:#content {
/* FIX: Make internet explorer wrap correctly */
width: auto !important;
padding: 5px;
}

.logo {


}

#nav {
float: right;
margin-top: 100px;
margin-right: 100px;
}
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
try moving that higher
like right above
<ul id="nav">
thanks man u really helped me. I cut and pasted the logo code before the nav code in the header template and changed the margins. Your awesome for helping me, and the w3schools helped me. BIG THANKS MAN.