Site logo

Archived topic

Mobile header image has large background.

3 replies · Started by Ben on January 24, 2021

Viewing posts 1–4 of 4

The mobile header has a large gray background and creates too much separation between content and header image.

https://ggj.98d.myftpupload.com/

Can you help?

Thank you!

Hi there,

you need to remove the full height option on the header element and adjust its padding for mobile. Try this CSS to do that:

@media (max-width: 768px) {
  .hero-cover {
      min-height: unset !important;
      background-size: cover !important;
      padding-bottom: 120px !important;
  }
}

Worked perfectly. Thank you!

Glad to hear that

This archived topic is closed to new replies.