GetSimple Support Forum

Full Version: Horizontal navigation with subpages
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello. How can I do to have subpages in horizontal navigation? Like in this template:
http://culturaldesigngroup.com/
I tried with I18N plugin. I followed this guide:
http://mvlcek.bplaced.net/get-simple/mul...navigation
I put the line:

<?php get_i18n_navigation(return_page_slug(), minlevel, maxlevel, show); ?>

in place of the line:

<?php get_navigation(return_page_slug()); ?>

But the navigation bar disappears. Can you help me, please?
You need this page:
http://mvlcek.bplaced.net/get-simple/nav-pulldown-left


and this code:
<?php get_i18n_navigation(return_page_slug(),0,1,I18N_SHOW_MENU); ?>
(2016-11-02, 03:30:33)Timbow Wrote: [ -> ]You need this page:
http://mvlcek.bplaced.net/get-simple/nav-pulldown-left


and this code:
<?php get_i18n_navigation(return_page_slug(),0,1,I18N_SHOW_MENU); ?>

Thanks, I tried, but it is all too difficult to understand for me. Do you know if there's a responsive theme that already has this menu?. Thanks, I'm a little discouraged .. Sad
A drop down menu isn't an easy task.  I think most people use one ready made.

There are many themes with drop down menus. They will all need the plugin as well, and maybe the template altered to accommodate the plugin.

To make multi level navigation work you need:
  1. a plugin like I18N to generate the html for the navigation links
  2. css to display the nav links as required
(2016-11-02, 23:19:18)Timbow Wrote: [ -> ]A drop down menu isn't an easy task.  I think most people use one ready made.

There are many themes with drop down menus. They will all need the plugin as well, and maybe the template altered to accommodate the plugin.

To make multi level navigation work you need:

  1. a plugin like I18N to generate the html for the navigation links
  2. css to display the nav links as required

Ok, since it is difficult, I will think after understanding the most important things. Thank you. Ciao