How to show arrow submenu

Hi

How to show arrow submenu & How to up sub menu in top bar

https://rosewinedemo.piyaidea.com/



Comments

  • Hello,

    I can see that you handled showing the arrow.

    To move the submenu up, please, put the following CSS code in Betheme -> Theme options -> Custom CSS & JS -> CSS.

    #Top_bar .menu li ul{
       top: 60%!important;
    }
    

    Thanks

  • Thank you for the advice and i succeeded

    But when it's a menu Sticky Sub Menu. It overlaps with main menu bar

    and i want to amplify box and text left

    Please Check my image preview

    Thankyou


  • Replace the previous code with the following one:

    #Top_bar:not(.is-sticky) .menu li ul{
      top: 60%!important;
    }
    #Top_bar .menu li ul li{
      width: 300px!important;
      text-align: left;
    }
    

    Thanks

Sign In or Register to comment.