• Resolved demiannl

    (@demiannl)


    Is it possible to change the size of the header, i’d like to make it thinner instead of what it is now.

    Im talking about the size of the brown header with color #d2ab66

    some help would be appriciated,

    Thanks in advance

    the site im talking about is https://www.interieurbouw-nh.nl

    thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi demiannl,

    The height of that header is determined by the margin and padding of the elements inside of it. For instance, I used Firebug to inspect the elements in that area and found that the h3 and the buttons in that area have top margins that are pushing the elements apart, which are in turn making the header area taller.

    Reducing the size of that margin reduces the height of the header. If your theme doesn’t have an option for custom CSS, you can use a custom CSS plugin and add this to reduce the top margin:

    .intro h3 {margin-top: 30px;}

    .intro .btn {margin-top: 10px;}

    Hope this helps!

    Christi

    Thread Starter demiannl

    (@demiannl)

    thank you so much! it worked!

    You’re welcome! So glad I could help!

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