MyBB Community Forums

Full Version: Edit: Top Link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to edit my top link, instead "Calendar" i want to put "Portal" link back.

So what changes must I do in here?
<a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" />{$lang->toplinks_calendar}</a>

is it like this?
<a href="{$mybb->settings['bburl']}/portal.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/partal.gif" alt="" />{$lang->toplinks_calendar}</a>

and also change the word from Calendar to Portal....
DragonLord Wrote:I want to edit my top link, instead "Calendar" i want to put "Portal" link back.

So what changes must I do in here?
<a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" />{$lang->toplinks_calendar}</a>

is it like this?
<a href="{$mybb->settings['bburl']}/portal.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/partal.gif" alt="" />{$lang->toplinks_calendar}</a>

and also change the word from Calendar to Portal....

<a href="{$mybb->settings['bburl']}/portal.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/portal.gif" alt="" />Portal</a>

Portal doesn't has a lang var in global.lang.php; and portal.gif doesn't exist, so you'll need to create an image yourself; name it portal.gif and upload it into ./images/toplinks/
Thanks for the help "LeX-" Big Grin