Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1150323

    Hello, I am having trouble editing the styling for the full width sub menu, I’m wanting to remove the grey back ground, change the font colour to #333333 and increase the thickness of the red line so that its the same thickness as the red line under my main menu. Also is there any way to hide the full width sub menu on mobile?

    #1150328

    Hey B,

    Add this to quick css:’

    #top .av-submenu-container .container .av-subnav-menu li{
    background:transparent!important;
    border-top:none!important;
    border-left:none!important;
    border-right:none!important;
    border-bottom:3px solid #F32219;
    }
    
    @media only screen and (max-width: 767px)  {
    #sub_menu1{
    display:none!important;
    }}

    Best regards,
    Jordan Shannon

    #1150334

    Hi Jordan, the font colour hasn’t changed and there’s a thin line behind the thick line now, is there any way to remove that?

    #1150696

    Hi,

    Adjust the css to this:

    #top .av-submenu-container .container .av-subnav-menu li{
    background:transparent!important;
    border-top:none!important;
    border-left:none!important;
    border-right:none!important;
    border-bottom:3px solid #F32219;
    color:#F32219;!important
    }

    Chnage the color to whatever you need.

    Best regards,
    Jordan Shannon

    #1150704
    This reply has been marked as private.
    #1150740

    Hi,

    Apologies. Fixed below:

    #top .av-submenu-container .container .av-subnav-menu li{
    background:transparent!important;
    border-top:none!important;
    border-left:none!important;
    border-right:none!important;
    border-bottom:3px solid #F32219;
    color:#F32219!important;
    }

    Best regards,
    Jordan Shannon

    #1150986
    This reply has been marked as private.
    #1150997

    Hi,

    Remove all css I gave you and use this instead:

    	#top .av-submenu-container .container .av-subnav-menu li{
    background:transparent!important;
    border-top:none!important;
    border-left:none!important;
    border-right:none!important;
    border-bottom:0px!important;
    }
    
    		#top .av-submenu-container .container .av-subnav-menu li a{
    color:#F32219!important;
    }

    Best regards,
    Jordan Shannon

    #1151002
    This reply has been marked as private.
    #1151009

    Hi,

    Yes, adjust css to this:

    #top .av-submenu-container .container .av-subnav-menu li a{
    color:#333333!important;
    }
    
    #top .av-submenu-container .container .av-subnav-menu li a:hover{
    color:#F32219!important;
    }

    To remove the border:

    #top .av-submenu-container .container .av-subnav-menu::before,
    #top .av-submenu-container .container .av-subnav-menu::after{
    border-bottom:0px!important;
    }

    Best regards,
    Jordan Shannon

    #1151027

    Thanks Jordan! That has done the trick, is there a way that I can hide the sub menu on mobile and tablet?

    #1151029

    Hi,

    Perfect to hide the sub-menu on the mobile and tablet add the following:

    @media only screen and (max-width: 1024px)  {
    #top .av-submenu-container .container .av-subnav-menu{
    display:none!important;
    }}

    Best regards,
    Jordan Shannon

    #1151031

    Awesome, thanks so much for all your help! :)

    #1151032

    Hi,

    No problem I’m happy to help! If you need anything else, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Full width sub menu styling’ is closed to new replies.