MyBB Community Forums

Full Version: Strange header on index page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm fairly new to HTML / CSS and my index page is doing strange things. I am so lost; any help would be greatly appreciated.

My first issue is the quick login. On the index page, the bottom portion is cut off (see index.jpg). If I click anything, it will be normal (see notindex.jpg). How is something in the header affected by the rest of the page?

My second issue, is how my index page shows in internet explorer (see ie.jpg). Again, this is the index page only...

Header Code:
<div id="container">
		<a name="top" id="top"></a>
<div id="header">
		<div class="menu">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php">&nbsp;&nbsp;{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php">&nbsp;&nbsp;{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php">&nbsp;&nbsp;{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help">&nbsp;&nbsp;{$lang->toplinks_help}</a></li>
				</ul>
			</div>
                			
                        <div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
<div class="headerad">{myadvertisements[zone_1]}</div>
</div>
			<hr class="hidden" />
			<div id="panel">
				{$welcomeblock}
			</div>
		</div>
		<hr class="hidden" />
		<br class="clear" />
		<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			{$pending_joinrequests}
			<navigation>
                       <br />

"headerad" css:
div.headerad {
	float: right;
	padding-top: 20px;
	padding-right: 30px;
}


*EDIT: Turns out disabling the "Welcome Information Block" plugin resolved both issues. I guess I'll be looking for an alternative.