MyBB Community Forums

Full Version: Links on Header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible they can be changed?

At the moment they're on Search, Members, Calendar and Help and I was wondering if it was possible to change them to different links?


Thanks for any help!
Yes, you can.
In Admin CP -> Templates & Style -> Templates (click on your template) -> Header Templates -> Header.
			<div class="menu">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>
			</div>

This is the code you must to edit.
Thank you!