MyBB Community Forums

Full Version: Navigation Menu Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to change the nav bar at the top of my site to have custom buttons. I have managed to change the pictures to those that I want but the button does not point to the correct forum. I have tried to change the code but this still does not seem to work.
Here is a copy of the codes
<li><a href="{$mybb->settings['bburl']}/forumdisplay.php?fid=13"><img src="http://i617.photobucket.com/albums/tt254/ecullensgirl/Dragon%20Nav%20Bar/Twilight.gif" alt=""></a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>


The top code is the one I have changed the bottom one is the standard one.
Any help would be appreciated.
What's your actual URL...??
This should work, I tested it on your board. You were missing a lot of " before the IMG url and after. Also you didn't close some tags and alt's. Next time be more careful when editing HTML Wink.

<div class="menu">
<ul>

<li><a href="http://mysticalvampyrevixens.com/Forum/search.php"><img src="http://i617.photobucket.com/albums/tt254/ecullensgirl/Dragon%20Nav%20Bar/Search.gif" alt="" title="" /> </a></li>


<li><a href="http://mysticalvampyrevixens.com/Forum/memberlist.php"><img src="http://i617.photobucket.com/albums/tt254/ecullensgirl/Dragon%20Nav%20Bar/Members.gif" alt="" title="" /> </a></li>


<li><a href="http://mysticalvampyrevixens.com/Forum/forumdisplay.php?fid=13"><img src="http://i617.photobucket.com/albums/tt254/ecullensgirl/Dragon%20Nav%20Bar/Twilight.gif" alt="" title="" /> </a></li>

<li><a href="http://mysticalvampyrevixens.com/Forum/misc.php?action=help"><img src="http://mysticalvampyrevixens.com/Forum/images/toplinks/help.gif" alt="" title="" />Help</a></li>
</ul>
</div>
Thanks so much for your help. I thought I had double checked all of the " and closers. A second pair of eyes is always helpful! Thank you. I will now endeavour to put the rest up....and make sure that I am careful with the HTML.
Again thanks!