MyBB Community Forums

Full Version: Add Header Links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I didn't know what to call this, I'm sorry. I'm new to coding and was wondering how to add quick links near where the default member list and search is? 
Where it says here
Hi. Do you know html / css?

You can find in Templates & Style -> Templates -> {Theme name} -> Header Templates -> header

Find following:
<ul class="menu top_links">
						{$menu_portal}
						{$menu_search}
						{$menu_memberlist}
						{$menu_calendar}
						<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
					</ul>

And add another <li> tag after ul tag. Inside that you could add link Smile

If you don't know how to, share url what you wanna have & text you want to display.
Thank you!