MyBB Community Forums

Full Version: how to make custom menu bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi everyone

i want to make a custom second menu bar with icons but the bar should be appeared only in specific pagesand not in the whole forum.(the bar will iclude the forum categories)

can anyone plz help me?
(2013-07-01, 03:27 PM)ikhwanulfikri Wrote: [ -> ]this : http://mods.mybb.com/view-resource/addin...m-menu-bar


i did this but it din't help because menu bar is shown in the whole forum
^ where exactly you want to have the menu - on which pages ?
(2013-07-01, 05:05 PM).m. Wrote: [ -> ]^ where exactly you want to have the menu - on which pages ?

i want the menu in every forum category page but not in portal rules articles etc
obviously you do not want the menu on the forum home page (index) right ? you can add required menu
code in forumdisplay template so that it will be visible on category pages and forum display pages

admin panel >> templates >> active theme templates >> Forum Display Templates >> forumdisplay
simple method is this --> you can add your menu code anywhere after {$header} code.
(2013-07-01, 05:34 PM).m. Wrote: [ -> ]obviously you do not want the menu on the forum home page (index) right ? you can add required menu
code in forumdisplay template so that it will be visible on category pages and forum display pages

admin panel >> templates >> active theme templates >> Forum Display Templates >> forumdisplay
simple method is this --> you can add your menu code anywhere after {$header} code.

thanks i'll try this

thanks a lot .m. this solved my problem ....how can i add an icon bar instead of letters?
^ a link in general is like this --> <a href="path-to-link">link-text</a>
to replace link-text with an image, we use code like below
<a href="path-to-link"><img src="path-to-image" /></a>