2011-04-18, 11:42 PM
2011-04-19, 01:11 AM
Admin Control Panel>Templates and Styles>Templates>"Current theme">Header>Expand
Whole bunch of choices on where to put it choose where you want it.
Whole bunch of choices on where to put it choose where you want it.
2011-04-19, 05:32 AM
ACP >> Templates & Style >> Templates >> Apart Flame (I assume) >> Header Templates >> header
Find:
Add the following code just before </ul> tag:
Replace LINK_CLASS with the accompanying page name.
Create the class in global.css using "#panel .upper ul.top_links a.LINK_CLASS" with the rules in there.
Find:
<ul class="menu top_links">
<li><a href="{$mybb->settings['bburl']}/search.php" class="search">{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php" class="memberlist">{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php" class="calendar">{$lang->toplinks_calendar}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
</ul>
Add the following code just before </ul> tag:
<li><a href="LINK_URL" class="LINK_CLASS">LINK_NAME</a></li>
Replace LINK_CLASS with the accompanying page name.
Create the class in global.css using "#panel .upper ul.top_links a.LINK_CLASS" with the rules in there.