MyBB Community Forums

Full Version: Add a link
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I want tot create a link next to 'search','memberlist' and that kind of stuff. Is this possible?
Edit your header template. Look at how the search, memberlist etc links are set up to workout how to do it.
(2009-08-15, 01:33 PM)Joshua Mayer Wrote: [ -> ]Edit your header template. Look at how the search, memberlist etc links are set up to workout how to do it.

Nice, thank you very much. The only thing is that I took this
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
And I replaced /search.php by another page, which worked. I also changed the gif image, which also worked. But I can't replace the word 'Search' next to icon which appears on the top of the page.
How do I do that?
Replace {$lang->toplinks_search} with the text you want to show.
Thank you all soooo much! This is exactly what I was looking for