Change Header depth in Gateway theme

  • Unknown's avatar

    Default header size for Gateway theme is 2560 x 640. I would like to drop in an image with a height of 1080 px. None of the CSS code I’ve tried seems to be working. Can you help?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, it looks like you are close. To have a 1080px tall header, change the min-height you have in .header-bg to 1080px. The header image will expand to fill that area.

    .header-bg {
        background-color: #e8554e;
        background-position: 50% 0;
        background-size: cover;
        height: 100%;
        min-height: 1080px;
        position: relative;
    }
  • The topic ‘Change Header depth in Gateway theme’ is closed to new replies.