• Resolved mladenradev

    (@mladenradev)


    Hello,
    I’m using WP3.6.1 with Duena theme, but have problem with menu depth. Show only 0->1->2 levels. I need to be 0->1->2->3(->4). What can I do?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hey mladenradev.
    Most theme’s navigation comes with 2 levels of depth. You can add the functionality yourself for the navigation you have or you can get a plguin to do it for you.

    Hi,
    First of all, before make any changes I recommend you to create Deuna child theme and then you can put all css code in the childs theme style.css (you can find tutorial here)
    Then add to your style.css in child theme next code:

    .navbar_inner > div > ul li li:hover > ul,
    .navbar_inner > div > ul li li.sfHover > ul,
    .navbar_inner > ul li li:hover > ul,
    .navbar_inner > ul li li.sfHover > ul {
      left: 101%;
      top: -10px !important;
    }

    Thread Starter mladenradev

    (@mladenradev)

    .navbar_inner > div > ul li li:hover > ul,
    .navbar_inner > div > ul li li.sfHover > ul,
    .navbar_inner > ul li li:hover > ul,
    .navbar_inner > ul li li.sfHover > ul {
      left: 101%;
      top: -10px !important;
    }

    works fine.

    Thanks!

    I’m having the exact opposite issue. I’d like my menu to only display 2 levels of depth, but it’s displaying all 3.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘menu depth’ is closed to new replies.