MyBB Community Forums

Full Version: Adding toplinks
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So i added toplinks. They work, but the images are all messed up

www.metulburr.com

the code in my header is 
<div id="container">
		<a name="top" id="top"></a>
		<div id="header">
			<div id="logo">
				<div class="wrapper">
					<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
					<ul class="menu top_links">

<li><a href="{$mybb->settings['bburl']}/donate.php"><img src="http://www.metulburr.com/images/toplinks/dollar.png"alt="" title="Donate" />{$lang->toplinks_donate}</a></li>
						
						{$menu_portal}
						{$menu_search}
						{$menu_memberlist}
						{$menu_calendar}
						
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help&hid=8"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/help.gif" alt="" title="Rules" />{$lang->toplinks_rules}</a></li>
                

1) I could not find my theme (default) in the images directory to locate the toplinks image. So i created a toplinks directory inside images, and hard coded the path to the image. However before i did this for some reason there is 2 images, the dollar symbol, which is what i want and the magnifying glass which i have no idea where that is coming from? The same for the Rules toplink, but the image is just named rules.png
This is the reason why i created this tutorial:
https://community.mybb.com/thread-194906.html

It would probably be easier to follow the tutorial than to explain all the steps necessary to create default MyBB toplinks.
I figured it out. I had to remove the li tags from the links. And for hhard coding, i think i figured out the var for the root site

<a href="{$mybb->settings['bburl']}/misc.php?action=help&hid=8"><img src="{$mybb->settings['bburl']}/images/toplinks/rules.png"" alt="" title="Rules" />{$lang->toplinks_rules}</a>
						
						{$menu_portal}
						{$menu_search}
						{$menu_memberlist}
						{$menu_calendar}
	
<a href="{$mybb->settings['bburl']}/donate.php"><img src="{$mybb->settings['bburl']}/images/toplinks/dollar.png"alt="" title="Donate" />{$lang->toplinks_donate}</a>

Thank you for the prompt response