MyBB Community Forums

Full Version: Help w/ header!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello! My name is Nick Morin and I am one of the www.DeltaHax.net owners I am currently trying to add new feature to the site and one of them being a links bar on top of the header logo. Unfortunately whenever I try to add it the theme messes up as shown below....

Normal Website:
[Image: attachment.php?aid=23820]
Website with the prototype bar:
[Image: attachment.php?aid=23821]
As you can see the website shifts and changes the color to gray...
I do want the links on top of my header so could anyone help me correctly edit the header to achieve this?

Here is the edited template used for the header:
Quote:<div class="clear"></div>
<div id="nav">
<ul>
<li class="active"><a href="{$mybb->settings['bburl']}/index.php">Home</a></li>
</ul>
<div id="container">
<a name="top" id="top"></a>
<br>
<br>
<br>
<div id="header">
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
<div id="panel">{$welcomeblock}</div>
<div class="clear"></div>
</div>
<div id="nav">
<ul>
<li class="active"><a href="{$mybb->settings['bburl']}/index.php">Home</a></li>
<li><a href="{$mybb->settings['bburl']}/forum.php">Forum</a></li>
<li><a href="{$mybb->settings['bburl']}/mysubscriptions.php">Premium Membership</a></li>
<li><a href="{$mybb->settings['bburl']}/games.php">Arcade</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></li>
</ul>
<div id="search">
<form action="{$mybb->settings['bburl']}/search.php" method="post">
<div class="search_input_wrap"><input name="keywords" class="search_input" title="Enter your search keywords" onfocus="if(this.value == 'Search...') {this.value='';}" onblur="if(this.value == '') {this.value='Search...';}" size="32" value="Search..." type="text" /></div>
<input value="" name="submit-search" class="search_button" type="submit" />
<input type="hidden" name="action" value="do_search" />
</form>
</div>
<div class="clear"></div>
</div>
<div id="content">

<div id="breadcrumb">
<div class="breadcrumb_left"><div class="breadcrumb_right">
<ul>
<li class="bread_home"><a href="{$mybb->settings['bburl']}/index.php" title="Home"></a></li>
{$unreadpmmsg}
<navigation>
</ul>
</div></div>
</div>

<div id="sidebar">
<a href="{$mybb->settings['bburl']}/misc.php?action=syndication" class="rss_button tip" target="_blank" title="Subscribe to our RSS feed"><div>{$lang->bottomlinks_syndication}</div></a>
<div class="sidebar_block">
<div class="sidebar_block_tcat"><strong>Menu</strong></div>
<div class="sidebar_block_main">
<ul>
<li><a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a></li>
<li><a href="<archive_url>">{$lang->bottomlinks_litemode}</a></li>
<li><a id="click" href="#" title="Toggle Width">Toggle theme width</a></li>
<li><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a></li>
</ul>
</div>
</div>
<div class="sidebar_block_main">
<ul>
<li><a href="http://www.facebook.com/pages/DeltaHax/254603711232547">Facebook</a></li>
<li><a href="http://twitter.com/#!/DeltaHax">Twitter</a></li>
<li><a href="http://www.youtube.com/user/DeltaHax?feature=mhee">Youtube</a></li>
<li><a href="https://plus.google.com/104764291671640955497/posts">Google+</a></li>
<li><a href="http://deltahax.net/showthread.php?tid=1&pid=1#pid1">Minecraft Server</a></li>
<li><a href=" "> </a></li>
<li>User Options:</li>
<li>-----------------</li>
<li><quickthemeoc></li>
</ul>
</div>
</div>
</div>
<div id="main">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}

Also where is the post controls for a new post and thread template stored at?

Thanks in advanced,
Nick Morin