Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #712554

    Hello.
    I’m building a new site and we like the transparent header. However, the logo we’d like to use with the company colors is getting lost. I’d like to have a dark overlay in the header so the logo pops. Is there a way to change that feature? Using a white logo is not an option. I have placed a screen on the actual photo of the first image in the slider, but obviously that’s not responsive so doesn’t adjust when screen size changes.

    #712788

    Hi mattb1169!

    Try adding this code in Quick CSS (located in Enfold > General Styling) for header dark overlay:

    #top #wrap_all .header_color.av_header_transparency {
        background: rgba(0,0,0,0.8) !important;
    }
    
    #top .header_bg {
        background: transparent !important;
    }

    As for this part of your statement

    I have placed a screen on the actual photo of the first image in the slider, but obviously that’s not responsive so doesn’t adjust when screen size changes.

    Can you elaborate more on the details.

    Cheers!
    Nikko

    #713051

    Thanks Nikko,
    I will try the Quick CSS code. What I meant about the “screen on the actual photo” was that I added the transparent screen to the image in Photoshop before uploading to the media library. So it had the desired effect but it is not responsive.

    Matt

    #713074

    Nikko,
    I just added the script to the Quick CSS. It did create the dark transparent overlay, thank you. However, the header no longer changes when scrolling down to the solid white background color (the tool bar does turn red, which is correct). When I now scroll the dark transparent overlay turns to the light transparent overlay.

    I believe the settings are still correct to go from transparent & glassy header to the white background in the header w/ red tool bar. Did the Quick CSS code overwrite something?

    Thanks,
    Matt

    #713404

    Hey!

    Yes, the code in Quick CSS overwrites some css code and that’s what you are seeing, if you want the white background to show on scroll, please remove this code that I gave:

    #top .header_bg {
        background: transparent !important;
    }

    If there’s any changes you need after doing this please let us know.

    Best regards,
    Nikko

    #713780

    Thanks Nikko,
    That worked great!

    Matt

    #713804

    Hi!

    Glad we could help :)

    Cheers!
    Nikko

    #1299751

    Hi Nikko,
    Your CSS code works perfecktly, but it puts an overlay in the mobile menu also.
    How to don’t change the mobile menu ?
    Thanks

    #1299769

    Hi ppi37,

    Can you try to wrap it inside a media query, it should look like this one:

    @media only screen and (min-width:768px) {
      #top #wrap_all .header_color.av_header_transparency {
        background: rgba(0,0,0,0.8) !important;
      }
    }

    Best regards,
    Nikko

    #1299960

    Hi Nikko,
    Perfect !
    Thanks a lot

    #1300223

    Hi ppi37,

    Great, I’m glad that Nikko could help you out :-)

    Best regards,
    Rikard

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