MyBB Community Forums

Full Version: Logo Position Help Needed*
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
URL: GamingGeneral.net

Problem: There is a unneeded space under the logo which i dont want there. It seems as my logo makes all the header links not working and causes them to redirect to the homepage.

[Image: qqd9fl.png]

Where that green space is i want removed. Basically every space under the logo so it fits perfectly with the header bar.
I saw something weird in your template code i think:

<a name="top" id="top"></a>
<center><a href="http://gaminggeneral.net"><br><img src="images/ydgl/logo.png" alt="http://gaminggeneral.net" title="http://gaminggeneral.net" /></center>


</a> tag from <a href isn't closed maybe that cause problems.
That <br> tag is not helping either

<a name="top" id="top"></a>
<center><a href="http://gaminggeneral.net"><img src="images/ydgl/logo.png" alt="http://gaminggeneral.net" title="gaminggeneral.net" /></a></center>

I will leave the center tag in but ARGGG. Use css.
I still cant get space outta there.

Need help! BTW guys above thanks for the help, fixed it as you said. Still need that space gone,
You have a height set on your header id, but it is empty and under your logo.

Open global css, find

#header {
height: 140px;
margin-top: -25px;
}

Remove
height: 140px;
margin-top: -25px;
Aweosme dude! Thank you!