Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #519053

    How do I change the size of the the Sub Menu Text? How about the regular and hover state of the menu text?

    Also I noticed when I scroll down I;m unable to click the buttons?

    Please advise

    #519199

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #top .av-subnav-menu li a {
        font-size: 14px;
        color: red;
    }
    #top .av-subnav-menu li a:hover {
    color: orange; 
    }
    #sub_menu1 {
        z-index: 503!important;
    }

    Best regards,
    Yigit

    #519517

    Thanks Yigit!

    Anyway to add a background box to the rollover? ( like I have in the main navigation) and any way to customize that color for each link? (like in the social icons)

    #520319

    Hi!

    Use this:

    #top .av-subnav-menu li a{
        padding: 4px 10px 4px 12px;
    }
    
    #top .av-subnav-menu .menu-item-top-level-1 a:hover{
        background-color: red;
    }
    
    #top .av-subnav-menu .menu-item-top-level-2 a:hover{
        background-color: green;
    }
    
    #top .av-subnav-menu .menu-item-top-level-3 a:hover{
        background-color: blue;
    }

    Cheers!
    Josue

    #521353

    Thanks

    How do I change the text color when it is rollover?

    Any way to make it a smooth transition like in the main main and social icons??? right now the transition is a little rough.

    #521443

    Use this code:

    #top .av-subnav-menu li a {
        transition: all linear 0.1s;
    }
    #top .av-subnav-menu li a:hover {
        color: red;
    }

    Regards,
    Josue

    #521970

    Ahoy Josue –
    Those didnt seem to work

    #522008

    Hey!

    Try adding !important:

    #top .av-subnav-menu li a:hover {
        color: red !important;
    }

    Cheers!
    Josue

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