Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1179740

    Hi Team,

    Having two issues with transparent header activated.
    1) When I put an image as colour section background, then reduce screen size, when normal menu appears, the page heading element is pushed too far down in the section. See here when transparent https://ibb.co/r7SZwbH
    and here on tablet view https://ibb.co/1MXDdZQ
    And normal on mobile https://ibb.co/61JsK6s

    2) On pages with transparent header turned on, the custom footer page template green colour row extends in height. See here: https://ibb.co/6nY4S7V

    Thanks in advance.

    #1180567

    Hey marsh1984,
    Sorry for the late reply and thanks for the screenshots and link.
    2: So for your custom footer I’m not sure what size you would like the blue section so as an example I set the color section to “no padding” and it became 100px high because of the button, I then centered the button vertically in the space by adding this css to your Quick CSS:

    #av_section_8 > .container {
      min-height: 100px;
      padding-top: 0px !important;
      display: flex !important; 
      align-items: center !important; 
      justify-content: center !important;
    }
    

    Please feel free to change the color section padding to suit.
    1: I’m not sure where you would like the heading, when the header is transparent the page moves up typically about 116px so the image can be under the header and show though, so for mobile when the header is not transparent everything comes down. So can you explain where you want the “Dry Needling” perhaps centered in the image as it is for mobile?

    Best regards,
    Mike

    #1180789

    Thanks for your reply.

    Leaving your code in there for the moment, the footer issue may be related to when transparent header is turned on. See screen shot of custom footer colour row when transparency turned on.

    https://ibb.co/ct1pBYj

    See screenshot of custom footer colour row when transparency turned off.

    https://ibb.co/2dhYptL

    There is extra space above the button when transparency turned on. I am looking at the contact page in this case.

    Thanks

    #1181227

    Hi,
    Thank you for the feedback, the extra space above occurs because the footer page also contains the class avia-builder-el-0 for the first section on the page, and when the transparent header is used it adds 116px top padding so the header looks transparent.
    The top color section on your footer page has a min-height of 100px, yet the container doesn’t have the height. That is why in the css above we gave the container the matching height and centered it vertically.

    So on your footer page I give the first section a custom ID and then edited your css to this:

    #custom_footer > .container {
      min-height: 100px;
      padding-top: 0px !important;
      display: flex !important; 
      align-items: center !important; 
      justify-content: center !important;
    }

    I checked pages that had both transparent headers and not, and the footer seems to be the same now, please clear your browser cache and check.

    Best regards,
    Mike

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