MyBB Community Forums

Full Version: new link on index page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to add new link i n index page see picture
[Image: ScreenShot015-1.png]
Admin cp -> templates & style -> templates -> your template sets -> header templates -> header

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

Add above/before it:
<li><a href="Link here"><img src="image source here" alt="alt here" title="title here" />Name here</a></li>

~ David
just want add my radio link next to the help link
If you search then you'll find dozens of similar threads even tutorials.

In header template of your theme, Add the code vernier provided above just before the ending </ul> tag.
Lexy, do you have an image for the radio?

If not use this:

<li><a href="Link here" title="title here">Name here</a></li>
dont need image and one more thing want open it in new page can you provide code.Thanks
<li><a href="Link here" title="title here" target="_blank">Name here</a></li>

~ David
thanks give you rep+
can someone provide the code to open it in new windows.Thanks

<li><a href="Link here"><img src="image source here" alt="alt here" title="title here" />Name here</a></li>
<li><a href="Link here" target="_blank"><img src="image source here" alt="alt here" title="title here" />Name here</a></li>