interforo Active member Aug 14, 2018 #1 How can I reduce the height of my header? See red line in screenshot, is it padding anywhere?
Jordyn Well-known member Aug 15, 2018 #2 can you try messing around with this code, see if it helps? extra.less Code: .p-header-logo.p-header-logo--image img { margin-top: -8px; margin-bottom: 0px; } you could add your logo image size to max width and height with this code to. Code: .p-header-logo.p-header-logo--image img { max-width: 0px; max-height: 0px; margin-top: -8px; margin-bottom: 0px; } Upvote 0 Downvote
can you try messing around with this code, see if it helps? extra.less Code: .p-header-logo.p-header-logo--image img { margin-top: -8px; margin-bottom: 0px; } you could add your logo image size to max width and height with this code to. Code: .p-header-logo.p-header-logo--image img { max-width: 0px; max-height: 0px; margin-top: -8px; margin-bottom: 0px; }