• Hey,

    How do you get the menu to show an arrow if there is a sub menu on this theme?

    It works perfect on the mobile but doesn’t show on the desktop version.

    If anyone could point me in the right direction that would be helpful.

Viewing 1 replies (of 1 total)
  • Thread Starter glasgowj

    (@glasgowj)

    I solves this by using the code below, paste it into your custom CSS section:

    @media only screen and (min-width:901px) {
    	
    .main-navigation li > a:after {
        content: '';
    }
    
    .main-navigation li > a:only-child:after {
        content: "";
    }
    
    .main-navigation li li > a:after {
        content: ' ?';
        position: absolute;
        right: 0;
    	margin-right:15px;
    }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Menu Arrows on Desktop’ is closed to new replies.