MyBB Community Forums

Full Version: Changing My Nav Bar?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Well I go to templates/select my template/header and I am only left with this:

<a name="top" id="top"></a>
<div id="header">
{$welcomeblock}
<div id="content">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}
<navigation>
<br />

It is usually meant to show Home and Member List isn't it?
If it's not there, your theme will have it in the header_welcomeblock_member/guest templates.
Yes it was there, how can I change my Home button go to my index and not my board?

<li><a href="{$mybb->settings['bburl']}">Home</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>
In

<li><a href="{$mybb->settings['bburl']}">Home</a></li>

Change {$mybb->settings['bburl']} to whatever URL you want.
(2011-01-23, 09:07 PM)MattRogowski Wrote: [ -> ]In

<li><a href="{$mybb->settings['bburl']}">Home</a></li>

Change {$mybb->settings['bburl']} to whatever URL you want.

I have changed it into my URL but I only get this when I click it http://seatforums.net/community/%7Bhttp:...dex.php%7D
Don't put it in { }... Undecided
An alternative way is doing ../index.html (assuming that it's that)
Okay that has worked however I am now left with everything going down rows, if you look at this picture http://mods.mybb.com/uploads/previews/73..._guest.jpg and then look at my forum, my navbar is down a row and so is my Register button?

http://seatforums.net/community
Have you modified any CSS or HTML other than the menu?