Submenu Arrow not showing, when choosing to minify css

Submenu arrow shows when selecting to disable minify css in theme options, when selecting to enable minify the arrow disappears.

Comments

  • Hi,

    Thanks for reporting that. I have passed it to the dev team.

    For now, please, put the following CSS code in Betheme -> Theme options -> Custom CSS & JS -> CSS.

    .menuo-arrows:not(.keyboard-support) #Top_bar .menu > li.submenu > a:not(.menu-toggle)::after {
     content: "";
     display: block !important;
     width: 0;
     height: 0;
     position: absolute;
     top: 50%;
     left: auto;
     right: 10px;
     margin-top: -2px;
     border-top: 5px solid #ccc;
     border-left: 5px solid transparent;
     border-right: 5px solid transparent;
     background: none;
     opacity: .6;
    }
    

    Thanks

Sign In or Register to comment.