Tagged: 

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1428962

    trying to get rid of big down arrows. I have put small arrows next to menu items. Cannot get rid of them
    Home page menu still messed up.

    #1428963

    Hello,

    These arrows aren’t coming from Enfold. You can remove them by adding the following code to the bottom of Quick CSS field in the Enfold theme options > General Styling

    
    li.dropdown_ul_available:not(#menu-item-5472)::after
    {
      display: none;
    }
    

    Regards,
    Yigit

    #1428966

    All my codes came from enfold
    Your code did nothing
    Dave

    #1428968

    Hey Dave,

    You can find this custom code you added in the Appearance > Customize > Additional CSS at line 7 ( https://i.imgur.com/k0kQJeY.png ):

    
    li.dropdown_ul_available:not(#menu-item-5472)::after {
        content: "▼";
        color: #210e23;
        position: absolute;
        top: 31px;
        left: -3px;
    	 font-weight: bold;
    }
    

    After removing it, make sure to clear any server-side, plugin-based, and browser caches.

    Regards,
    Yigit

    #1428970

    need all menu items on top. spacing needs change

    #1428971

    removed

    #1428972

    now I have arrows in the sub menu
    can I make dropdown arrow larger in main menu

    #1428985

    Hi daves1997,

    The sub menu arrows are caused by this code:

    .menu li > a:after,
    #top .av-subnav-menu .menu-item-has-children > a:after { content: ' ▾'; }
    }

    To fix it, I have removed that code from Appearance > Customize, and then replaced it from Quick CSS:

    #top .main_menu .menu-item-has-children > a:after { 
        content: ' ▾';
        font-size: 18px;
    }

    The code should work however caching seems to prevent it from working because the older code is being fetched.
    Would it be okay to temporarily disable WP Rocket?

    Best regards,
    Nikko

    #1428995

    yes

    #1428996

    Still two rows of menu. home page menu no background

    #1429006

    What is taking so long?

    #1429154

    Hi daves1997,

    I apologize for the delayed response.
    Adjusting the font size of the menu should help, otherwise, the number of menu items should be reduced by making it a submenu of other menu items.

    Best regards,
    Nikko

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.