xMasTeR Posted December 7, 2010 Share Posted December 7, 2010 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. Link to comment Share on other sites More sharing options...
xMasTeR Posted December 7, 2010 Author Share Posted December 7, 2010 Anyone able to help or at least lead me in a proper direction? Link to comment Share on other sites More sharing options...
Wilhelmsen Posted December 7, 2010 Share Posted December 7, 2010 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! Link to comment Share on other sites More sharing options...
xMasTeR Posted December 8, 2010 Author Share Posted December 8, 2010 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. Link to comment Share on other sites More sharing options...
xMasTeR Posted December 8, 2010 Author Share Posted December 8, 2010 Any suggestions or lead way that can be shared? Anyone? Link to comment Share on other sites More sharing options...
Planetby Posted December 8, 2010 Share Posted December 8, 2010 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 :) Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.