MyBB Community Forums

Full Version: Header won't change in my cutom theme.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,
I made a theme really recently, and everything is working fine, except for the header images. This includes "search, "member list", etc. I try to change them from ACP > Templates and Style > Templates > *Template Name* > Header Templates > Header. I know the line of coding I need to change. Here is what I currently have in the coding for the header links:

<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>

The problem is, the images are not showing up next to the text. Why is this happening? I have the image files uploaded to my server in the right place, so what's going on? Any help is appreciated.

Thanks!
ACP > Templates and Style > *Theme Name*

Go down to where it says image directory and make sure it is the correct imgdir.
Still didn't work...
Can you please post your website's URL?
According to the image path, the images are not uploaded in proper folder. e.g.;
toontownheadquarters.net78.net/images/ToontownHQ/toplinks/search.gif

It should be in ./images/ToontownHQ/toplinks/ folder.
Got it to work! Thanks!