Submenue Style

Hello, please have a look at this page


I would like the submenu (for coaching) to be further to the left, have no shadow and the underline to look exactly like the main menu. 


Thank you for your help

Comments

  • Hi,

    Please try the following CSS code:

    @media only screen and (min-width: 1240px) {
     #Header_creative #Top_bar .menu li ul {
       left: 80%!important;
     }
    }
    

    Put it in Betheme -> Theme options -> Custom CSS & JS -> CSS.


    Best regards

  • Hi thanks for the quick help. I would still like the underline to be displayed only on hover, as in the main menu, and at a greater distance from the text.

  • Try this CSS code:

    #menu ul .menu-item.hover ul .menu-item span::after{
      display: none;
    }
    #menu ul .menu-item.hover ul .menu-item:hover span::after{
      display: block;
    }
    

    Best regards

Sign In or Register to comment.