Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #883513

    Hello. For Header Behavior I have everything unchecked. For each page I have a background color defined for Color Section 1. I need ALL devices sizes to show the same transparent header, just like iPad portrait and above shows.

    Please see this image for the issue

    Thank you,
    Ryan

    .

    #884100

    Hi Ryan,

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

    @media only screen and (max-width: 767px) {
    #top #wrap_all .header_color.av_header_transparency {
        position: absolute!important;
        background: transparent;
    }}
    

    However your content would move below your header. You can add a separator/whitespace element and choose to display it only on mobile to solve that issue :)

    Best regards,
    Yigit

    #884258

    Thanks, but there has to be another way. Adding whitespace or a separator to every page is not practical.

    #884259

    Every time a do a project and introduce a different Header and Transparency option, I run into this issue. If we set a header option for a page, it should work across ALL media queries.

    #884365

    When support looks at the site, it may appear to be “fixed”. I manually went in and added CSS to cover the header background color of EACH page.

    Please provide a solution that doesn’t require all of this CSS and doesn’t require remembering to do this for every new post/page that’s added.

    Thanks!

    #884472

    Hi,

    Please use the code as following

    @media only screen and (max-width: 767px) {
    #top #wrap_all .header_color.av_header_transparency {
        position: absolute!important;
        background: transparent;
    }
    #header.av_header_transparency + #main > .container_wrap .container {
        padding-top: 90px;
    }}

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Best regards,
    Yigit

    #884708

    Thanks, but that padding causes the need for more CSS (e.g. negative margins, negative padding) of other elements.

    If a page has a Blue background for Color Section 1 and the header is set to Transparent with Border, the header is Blue across desktop, iPad Landscape and iPad Portrait.

    Why in the world would this NOT flow down to all smaller devices. Unless I’m missing something this makes no sense. You shouldn’t have to mess with padding, margins, position or any other settings that “position” an element. when we are ONLY talking about colors here.

    #885654

    Hi,

    I will share this thread with my teammates and ask if they could come up with another solution and will share your request to keep transparent header transparent on mobile :)

    Best regards,
    Yigit

    #885659

    Thank you. I submitted a feature request this morning.

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