MyBB Community Forums

Full Version: How Do?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how do you add more links on the top of the page that says Home Portal etc.
how do you add more
Look in the header template and add links accordingly. It should be easy to follow. If not, post the contents of your header template (under Header Templates).
is there any easy way that way there is to many coding i have to do
1. Go to Admin CP > Templates & Style > Templates > Your Template Set > Header Templates > header.

2. Copy and paste the code here.
what code
the code for the links. Duh.
Here's what it should look like:

Quote:<div class="menu">
<div id="panel">
<center>
<ul>
<li><a href="{$mybb->settings['bburl']}/index.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/index.png" alt="" title="" />Index</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/search.png" alt="" title="" />{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/memberlist.png" alt="" title="" />{$lang->toplinks_memberlist}</a></li><!-- ListFollowerToplinks -->
<li><a href="Twitter"><img src="{$theme['imgdir']}/toplinks/twitter.gif" alt="" title="" />Follow Us</a></li><!-- /Twitter -->
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/help.png" alt="" title="" />{$lang->toplinks_help}</a></li>
<li class="rules_link">{$contactus__toplink_code}</li>
</ul>
</center>
</div>
</div>

Just copy and paste each one , like this one:
Quote:<li><a href="{$mybb->settings['bburl']}/index.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/index.png" alt="" title="" />Index</a></li>

Rename the part with index.php to your new php page. And also , you can change the images , if needed.