MyBB Community Forums

Full Version: How to change the navigation links at the top of the forum?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi guys,

I've moved from SMF and not very good with MyBB yet.

How to change "Search", "Calender", "Member List" at the top to something else?

http://idesi.x10hosting.com/forums/
you would have to edit your "header" template in your template set..Smile
Ok. Thanks. How to change the code to get the button to actually say "Home"

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

Smile
Thanks guys. Worked Perfectly. Easier than what I thought.
My forum is totally messed in Internet Explorer. Some suggested me to put this in top of index.html/index.php

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 STRICT//EN"

"http://www.w3.org/TR/html4/loose.dtd">

<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">

Edit: Fixed Now!!!

Dennis, you made a mistake

Wrong Code: "<li><a href="{$mybb->settings['bburl']}/index.php">Home</li>"

Right Code: "<li><a href="{$mybb->settings['bburl']}/index.php">Home</a></li>"
panesarv Wrote:Dennis, you made a mistake

Wrong Code: "<li><a href="{$mybb->settings['bburl']}/index.php">Home</li>"

Right Code: "<li><a href="{$mybb->settings['bburl']}/index.php">Home</a></li>"

Your original code had the mistake, but glad you fixed it Smile
Ooopss...My bad too....Anyways, its all good now....Thanks.
Hehe,

You could also take that a bit further and add the word to your language packs. But thats only really if you run multilanguage boards.
Thats what I was thinking about initially that I need to add something to the language file [Thats what I do in SMF. I'm using SMF on one site and use MyBB on other site].
Pages: 1 2