MyBB Community Forums

Full Version: how to show only image icon in menu bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i want to show only icon in header menubar.not text with that.how to do it

i mean to say i want to show pic like a hut instead of home
^ forum URL please ... required suggestion depends on the theme you are using

in general, a menu link might be like this
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>


as you want to remove the word AND show only the image, it can be changed to
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" /></a></li>