Okay
  Public Ticket #1554804
menu underline
Closed

Comments

  • Andres Santos started the conversation

    your theme has a bug on chrome. Click a menu item and scroll down, the underline won't go away from the menu item you clicked. Please fix this as soon as possible as my site is going up very soon.

    You can test this with your one page demo.

  •  840
    Jelly replied

    Hello,

    Go to main.css and find:

    .navbar-default .navbar-nav.invert > li.active > a:after,
    .navbar-default .navbar-nav.invert > li.active > a:hover:after,
    /*comment this line*//*.navbar-default .navbar-nav.invert > li.active > a:focus:after,*/
    .navbar-default .navbar-nav.invert > li > a:hover:after/*comment this line*//*,
    .navbar-default .navbar-nav.invert > li > a:focus:after*/ {
      background-color: #b59472;
    }

    Or you can comment all of it and add this code instead:

    .navbar-default .navbar-nav.invert > li.active > a:after,
    .navbar-default .navbar-nav.invert > li.active > a:hover:after,
    .navbar-default .navbar-nav.invert > li > a:hover:after {
      background-color: #b59472;
    }


    Best Regards,
    Jelly Team