MyBB Community Forums

Full Version: Toplink help??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay so im editing the Toplink so it has an Arcade button. Im entering this;

<li><a href="{$mybb->settings['bburl']}/games.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_arcade}</a></li>

but every time on the forum the image for it is showing up, but no words... Any help on how to get the word "Arcade" to show up beside the image?
It's not showing up because {$lang->toplinks_arcade} hasn't been added as a language variable. Just use plain text instead of the variable.

<li><a href="{$mybb->settings['bburl']}/games.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />Arcade</a></li>