Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1060443

    Hi,

    In the link in private content you see my site.
    I want to change the heading font in the mega menu, the font and the color.
    What do i need for CSS for that ?

    #1060904

    Hey BPC,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    /* CSS - */
    
    /* Mega menu title */
    #top #header #avia-menu li .mega_menu_title {
       color: red;
    }
    
    
    

    For more info please check https://kriesi.at/documentation/enfold/mega-menu/

    Best regards,
    Vinay

    #1061576

    Thanks, that wil do the trick.
    And what about the font and the font size ?

    #1061665

    Hi,

    Please use the same CSS selector and add the font property :)

    Your code should look like:

    #top #header #avia-menu li .mega_menu_title {
       color: red;
       font-size: 14px;
       font-family: your-font-name-here;  
    }

    Best regards,
    Vinay

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