Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1339951

    Hi,
    when i switch to responsive mode, the is a black background in the header area. Tried to change it in enfold settings, but it takes no effect. How can i hide it.
    There is no background in desctop mode…
    kind regards Jak

    #1339975

    Hey,

    Thanks for contacting us!

    Could you please post a link of your website so we can provide you an accurate solution?

    Best regards,
    Yigit

    #1339984
    This reply has been marked as private.
    #1340008

    Hi Jak,

    You are currently using a transparent header on your page which is disabled on mobile by default.
    Please add following code to Quick CSS field in Enfold theme options > General Styling tab to display transparent header on mobile

    
    /* Transparent Header For Mobile */
    @media only screen and (max-width: 990px) {
    .responsive.html_mobile_menu_tablet #top #wrap_all #header { 
            position: absolute;
    }
    .html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
    	background: transparent;
    }
    }
    

    Best regards,
    Yigit

    #1340042

    Hi Yigit,
    that worked, thank you!

    How can i remove the background from the header area too, when i scroll down in desktop mode?

    Kind regards Jak

    #1340045

    Hi,

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

    
    #top .header_bg {
      background-color: transparent;
    }
    /* To remove border from menu items /* 
    .av_seperator_big_border .av-main-nav > li > a {
      border: none;
    }
    

    Best regards,
    Yigit

    #1340161
    This reply has been marked as private.
    #1340369

    Hi,
    To have a transparent mobile header please use Yigit’s css above:

    @media only screen and (max-width: 990px) {
    .responsive.html_mobile_menu_tablet #top #wrap_all #header { 
            position: absolute;
    }
    .html_mobile_menu_tablet #top #wrap_all .av_header_transparency {
    	background: transparent;
    }
    }

    2022-02-13_004.jpg
    Now currently on desktop you have a fixed header that is transparent until you scroll, then it is blue, to have that blue transparent add the second css separately:

    #top .header_bg {
      background-color: transparent;
    }

    2022-02-13_005.jpg

    Best regards,
    Mike

    #1340395
    This reply has been marked as private.
    #1340397

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘How to remove background from header area in responsive mode’ is closed to new replies.