Okay
  Public Ticket #1381490
3rd sub menu items
Closed

Comments

  • cloudnclear started the conversation

    Hello,

    How do I make the 3rd sub menu items to be open in the right place?

    and also, it should be open from right to left.

    Please see 2 print screens - how it is now and it should work.

    "current view.jpg" / "should be.jpg"

    thank you in advance,

    sharon

  • cloudnclear replied

    also,

    please note that this menu also open automatically when you upload the site.. which is wrong...

    thanks

  •  2,009
    Ocean replied

    Hi,

    you can try add css

    .tp-navbar .navbar-nav li:hover .sub-menu {
      display: none;
    }
    .tp-navbar .navbar-nav > li:hover > .sub-menu {
      display: block;
    }
    .tp-navbar .navbar-nav ul ul {
        top: auto;
        bottom: 0;
        left: auto;
        right: 100%;
        float: right;
    }

  • cloudnclear replied

    Thank, it's working :)

    BUT, please notice when you upload the site and rollover the menu, the 3rd sub-menu its default is open...

    How do I change that? 

    thanks

    shaorn

  •  2,009
    Ocean replied

    Hi,

    you can try add css again. I don't see you add it.

    .tp-navbar .navbar-nav li:hover .sub-menu {
      display: none;
    }
    .tp-navbar .navbar-nav > li:hover > .sub-menu {
      display: block;
    }

  • cloudnclear replied

    Thanks!!