Posted December 7, 201014 yr I'm trying to add a drop down menu to some of my navbar tabs, & I'm not exactly sure how to go about doing this. I've been searching all around google, & I haven't found anything that is leading me in the right direction.
December 7, 201014 yr There is a great add on for this which can be found on IPS Marketplace here; http://community.invisionpower.com/files/file/3613-fusion-menu/ Works great without knowing any coding!
December 8, 201014 yr Author I appreciate you trying to help, but I'm not really looking for an application. I'm trying to learn by viewing another's code so In the future I can maybe mimmick my own.
December 8, 201014 yr In global template find : <li id='nav_app_{$data['app_dir']}' class="left {parse variable="appActive"}"><a href='{parse url="app={$data['app_dir']}" seotitle="false" base="public"}' title='{$this->lang->words['go_to_prefix']}{IPSLib::getAppTitle( $data['app_dir'] )}'>{IPSLib::getAppTitle( $data['app_dir'] )}</a></li> </if> </foreach> </if> </ul> </div> Add below : <div align="center"> <head> <title>Main Menu</title> </head> <body> <form ACTION=URI> <select style="font-size:12px;color:#ffffff;font-family:verdana;background-color:#032468;" name=scroll onchange="location.href=(form.scroll.options[form.scroll.selectedIndex].value)"> <option value=''>Main Menu</option> <option value="http://www.yoursite.com/index.php?/index">Forums</option> <option value="http://www.yoursite.com/index.php?app=members§ion=view&module=list">Members</option> <option value="http://www.yoursite.com/index.php?/calendar/">Calendar</option> <option value="http://www.yoursite.com/index.php?app=client">Client Downloads</option> <option value="http://www.yoursite.com/index.php?/tutorials/">Tutorials</option> <option value="http://www.yoursite.com/index.php?app=shop">Products</option> <option value="http://www.yoursite.com/index.php?app=commerce">Skin Shop</option> </select> </form> </body> </html> </div> You can add in the color,font,background etc to suit your own needs and edit the menu to yours too :)
Archived
This topic is now archived and is closed to further replies.