XF 2.0 reduce header height

interforo

Active member
Licensed customer
How can I reduce the height of my header?

See red line in screenshot, is it padding anywhere?

1534262483185.webp
 
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;
}
 
Back
Top Bottom