Posts: 32
Threads: 8
Joined: Oct 2016
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?
Posts: 1,129
Threads: 137
Joined: Feb 2012
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); ?>
Posts: 32
Threads: 8
Joined: Oct 2016
(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 ..
Posts: 1,129
Threads: 137
Joined: Feb 2012
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:
- a plugin like I18N to generate the html for the navigation links
- css to display the nav links as required
Posts: 32
Threads: 8
Joined: Oct 2016
(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:
- a plugin like I18N to generate the html for the navigation links
- 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