GetSimple Support Forum
Help with navigation (menu) - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16)
+--- Thread: Help with navigation (menu) (/showthread.php?tid=1857)



Help with navigation (menu) - gSvoren - 2011-06-17

Hello everyone, I just started using GetSimple today, and I'm hugely impressed.

I finally got the hang of tidbits of stuff, but I'm still stuck at the most important part of the site; The navigation.

I'm making a site for Novemberfilm.no and the style that the menu I want is on this domain www.novemberfilm.no

How do I make this work with the I18N Navigation / standard navigation?
Any help is VERY WELCOME!


Help with navigation (menu) - yojoe - 2011-06-17

Builtin GS menu function is meant only for flat, 1 lvl menus.
You have to use one of available menu plugins.


Help with navigation (menu) - gSvoren - 2011-06-17

Hey yojoe,

thanks for the quick reply.

Would you be able to help me make this menu with the I18N Navigation plugin, you think?


Help with navigation (menu) - yojoe - 2011-06-17

Everything you need is described in this example:
http://mvlcek.bplaced.net/multi-level-navigation/nav-pulldown-left/

You have to play with css to transform horizontal menu bar into vertical menu.
There are also plenty out of the box vertical menus across the web. Just find the one (G-> "css vertical menu") you'd like to use, and you shouldn't have much to do despite changing css classes/ID's.


edit: ohh when it goes to menus, Mvlcek is always to the rescue in a flash Wink


Help with navigation (menu) - mvlcek - 2011-06-17

gSvoren Wrote:Hello everyone, I just started using GetSimple today, and I'm hugely impressed.

I finally got the hang of tidbits of stuff, but I'm still stuck at the most important part of the site; The navigation.

I'm making a site for Novemberfilm.no and the style that the menu I want is on this domain www.novemberfilm.no

How do I make this work with the I18N Navigation / standard navigation?
Any help is VERY WELCOME!

1. Install the I18N plugin and the I18N Custom Field plugin.

2. In the administration go to Plugins/Configure Custom Fields and create a text or link field named link.

3. You have to create a page for each menu item, even for those with children like 'Produksjoner'. Make sure to check "Add to menu" in the page options and set the correct parent and position in the menu. You don't need any page content for the "folder" items like 'Produksjoner', but you should enter javascript:void(0) into the link field.

4. Use the following in your template to include the navigation menu:
Code:
<ul id="qm0" class="qmmc">
<?php get_i18n_navigation(return_page_slug(),0,99,I18N_SHOW_MENU); ?>
</ul>

5. Copy the relevant CSS styles to your CSS file, but replace .qmparent with .open.


Help with navigation (menu) - gSvoren - 2011-06-17

Thank you both for the superfast replies, I will give it a try and post my results! :-)


Help with navigation (menu) - gSvoren - 2011-06-17

Update: It worked, thanks so much for your help! I'm super happy that it finally works. Thanks again, a ton!