MyBB Community Forums

Full Version: Create Menu Link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need to create a link in the top menu of my theme that leads me to a different URL.... How do i do that?

Do i use page manager? Menu manager. ANy help would be great.

I want it to show right next to the links: (search, member list, calender..)

thanks
Go to your header template and find:

<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>

Add after that:

<li><a href="YOUR_LINK"><img src="YPUR_ICON_IMAGE_LINK" alt="" title="" />TEXT_TO_DISPLAY</a></li>

(Change the uppercase properties as per your need)

If you need additional pages for which you want the menu item then you need page manager or you can create your own.
+1 for effone's reply.
Googling HTML links W3 could be helpful to give you a greater understanding:
http://www.w3schools.com/html/html_links.asp
http://www.w3schools.com/dhtml/tryit.asp...tml_menu10