Topic: Menu drop down
Great CMS!
Is it possible to enable a menu drop down? For example. My menu is:
Home | Services | About us
Services has submenus:
Services
- apps
- network
- pricing
You are not logged in. Please login or register.
Monstra → Development → Menu drop down
Great CMS!
Is it possible to enable a menu drop down? For example. My menu is:
Home | Services | About us
Services has submenus:
Services
- apps
- network
- pricing
Sorry.. But multilevel menu not ready yet.
You can try some multilevel menu generators http://www.cssmenumaker.com/
Multi-level navigation would be great. My customer even needs 3 levels.
Greetings daelsta
+1 for dropdown menu
http://forum.monstra.org/topic/297/multilevel-menu/
I meant something more like http://twitter.github.com/bootstrap/jav … #dropdowns
@Shuyo
I think, it can be close to what you want, it is superfish used in it, and it is easy customizeable by CSS
Hi,
Is it possible to use mouse over event.. means user don't need to click but only mouse over for display sub-menu?
Thanks
bootstrap.. just add it to your menu perhaps replacing whole menu with new one ![]()
+1
______________
vrati, врати за мазета, монтаж врати
+1
Same here ![]()
It is possible the use of old plugin?
These are very Good links for menu Drop down.. Useful information.. Thanks.
Best way to go arround that question is to create a block and place <li> tag's inside, however you can place directory's or categorys inside like this example given at Monstra:
<ul class="as you need">
<?php $pages = Page::children('page'); ?>
<?php foreach($pages as $page) { ?>
<li><a href="<?php echo Site::url().'about/'.$page['slug']; ?>"><?php echo $page['title']; ?></a></li>
<?php } ?>
</ul>Monstra → Development → Menu drop down