Autonav - Display children of subpages on hover only
Permalink
I am working on this site...http://barkingtuna.com/mlorch
I currently have the Autonav configured to "display a custom amount 1" of subpages but would like it to display the children of a subpages when hovering over a subpage. If I set it to display 2 levels of subpages, it displays 3 total levels and the ALL display and overlap. I simply want a navigation menu that displays one sublevel at a time and a 2nd when hovered off to the side. I can work with the CSS to position the 3rd level, no problem, I just need guidance in setting it up to trigger the 3rd level only when you hover over the parent page.
I currently have the Autonav configured to "display a custom amount 1" of subpages but would like it to display the children of a subpages when hovering over a subpage. If I set it to display 2 levels of subpages, it displays 3 total levels and the ALL display and overlap. I simply want a navigation menu that displays one sublevel at a time and a 2nd when hovered off to the side. I can work with the CSS to position the 3rd level, no problem, I just need guidance in setting it up to trigger the 3rd level only when you hover over the parent page.
5.7.3.1 and no, no custom theme... I just forked the base Elemental theme. I'm aware of a plethora of add-ons in 5.6 and below to accomplish this but none in 5.7 at this point. 5.7 has been a challenge in some regards but great in others.
Does anyone have any suggestions on how to trigger display of 3rd level children in Autonav only when parent link is hovered on?
Why not just with css
ul ul ul { display: none; }
ul ul li:hover ul { display: block; }
ul ul ul { display: none; }
ul ul li:hover ul { display: block; }
Yep... that's the solution! Clearly I was over-thinking it... Thanks Michael!
Which version of c5 you are using? are you using any custom theme?