MyBB Community Forums

Full Version: Afresh Leaf help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need some help with the Afresh Leaf theme.

View the attached image first.

I have a red arrow pointing at a row of links, how could i get an extra row down there. Preferably using the same background image also.
I would like to place links on it.

Here is a good example: http://www.cod-bo.net/index.php
It's the one right above the countdown timer.
Who do you want it to appear for? Just members, or everyone?
everyone even guests. even banned.
In the header template:-

Find
			{$welcomeblock}
		</div>

Add after:
<div class="lower_panel" align="center">
	<a href="{$mybb->settings['bburl']}/portal.php">Home</a>
	<a href="{$mybb->settings['bburl']}/index.php">Forums</a>
	<a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a>
	<a href="{$mybb->settings['bburl']}/newpoints.php">Points</a>
	<a href="{$mybb->settings['bburl']}/search.php" class="search">{$lang->toplinks_search}</a>
	<a href="{$mybb->settings['bburl']}/calendar.php" class="calendar">{$lang->toplinks_calendar}</a>
	<a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a>
</div>

That will give you the same menu items as your example. Smile

Obviously the "Points" item will only work if you have the NewPoints plugin installed.
and i do have NewPoints installed! Thank you, i will try it right now and see if i do it correctly.