MyBB Community Forums

Full Version: Missing menu icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here is the problem

[Image: simnor.png]

Missing menu icons

Here is my header

<div id="container">
		<a<a name="top" id="top"></a>
		<div
<div id="header">
			<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
			<div class="menu">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}images/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}images/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}images/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
                                        <li><a href="getwx.php"><img src="#" alt="" title="" />Metar</a></li> 
                                        <li><a href="download.htm"><img src="#" alt="" title="" />Downloads</a></li> 
                                        <li><a href="donate.php"><img src="#" alt="" title="" />Support Simnor</a></li> 
                                        <li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}images/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>
			</div>
			<hr class="hidden" />
			<div id="panel">
				{$welcomeblock}
			</div>
		</div>
		<hr class="hidden" />
		<br class="clear" />
		{$welcomeblock}
		<div id="content">
			{$pm_notice}
			{$bannedwarning}
			{$bbclosedwarning}
			{$unreadreports}
			{$pending_joinrequests}
			<navigation>
			<br />

PS..
I have tried to change the /images/toplinks reference to everything els without any luck. I am using simplecorp as the main theme and I have also tied /images/simplecorp/help.gif without any luck.

I have also checked to see if the files actually are in the folder online, and it is.

Any suggestions

Anybody?
In these links you are referring to the theme directory for gifs. Have you checked that the theme directory is correctly set in the theme set up and that the images you are targetting are gifs and not pngs or something like that?

It would also help if you gave a forum link.

Ok, I googled Simnor.

You have the link set up wrong. The images are here:

"images/simplecorp/search.gif"

so you would need to use

{$theme['imgdir']}/search.gif"

Try that.
That did the trick Leefish, thank you very much. Case closed.