MyBB Community Forums

Full Version: Image in navbar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, Does anyone know how to add a image next to the next in a navbar? so eg:

http://prntscr.com/5p53r < i want images next to those, any ideas?
so you want to add images for the menu items (next to forum home , search , member list ... etc.)

most probably that menu code is in header template . see below code - observe how images are coded ..
<div class="menu">
				<ul>
					<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">{$lang->toplinks_memberlist}<img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" /></a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}<img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" /></a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}<img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" /></a></li>
				</ul>
			</div>

<img src="image path" alt="" title="" /> this is the code which is added at required menu items ...