• Resolved juanyo

    (@juanyo)


    hello everybody! amazing theme.!
    I would like to enlarge the height of the header and that the image fits there. is this possible?
    thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi, juanyo. As I believe you already noticed, the header is designed to fit the image into a maximum height of 150px. You absolutely can adjust the height to fit in a bigger image but it will require more than just one CSS adjustment. You’ll want to do this in either your child theme style.css file or perhaps a custom CSS plugin.

    Increase the height of the area holding the image:

    .top {
      height: 180px;
    }

    Increase the height of the header to handle the above adjustment.

    .header-wrap {
      height: 250px;
    }

    You’d adjust the pixel count as needed.

    Thread Starter juanyo

    (@juanyo)

    That sounds logical and it works! Sometimes the solution is in front of you and you do not. thank you very much for guiding me sdavis2702

    No problem at all. Glad I could help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘header height modification’ is closed to new replies.