MyBB Community Forums

Full Version: Remove the MYBB default writing in header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys,

My site: Click Here

I am having problems (or dont know how) to remove the white writing that is covering the header.

Here is a screenshot so you know exactly:

http://screensnapr.com/v/OPcVFC.png

How could i fix this and remove it?

Thanks
Post the contents of your header template. I'll tell you what to do from there.

And please don't PM me for support again.
Header template?

The have the theme XML code, and i searched for header in my MYBB files and nothing is found?
Go to Admin CP > Templates & Style > Templates > Your Template Set > Header Templates > header.

Copy and paste the whole thing here.
<hr class="hidden" />
<div id="panel">
<navigation>{$welcomeblock}
</div>
<div id="header" style="height: 64px;">
<div class="logo" style="margin-left: 11px; padding-bottom: 2px;"><a href="{$mybb->settings['bburl']}/index.php"><div class="logo">{$mybb->settings['bbname']}</div></a></div>
</div>
<div id="headsub">
<div class="menu" style="padding-bottom: 3px;">
<ul>
<li><a href="{$mybb->settings['bburl']}/search.php">{$lang->toplinks_search}</a></li>
<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>
<span style="float: right;">
<li><a href="{$mybb->settings['bburl']}/usercp.php">User CP</a></li>
{$modcplink}
{$admincplink}
</span>
</ul>
</div>
</div>
<div id="container">
<a name="top" id="top"></a>

<hr class="hidden" />
<br class="clear" />
<div id="content">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}
<br />
<navigation>{$welcomeblock}

Didn't close the navigation tag?
Problem solved.
(2011-09-11, 12:31 AM)fizz Wrote: [ -> ]
<navigation>{$welcomeblock}

Didn't close the navigation tag?


No need. <navigation> is replaced with the cookie trail.