Home › Forums › WordPress Themes – Premium › Encounters › Decrease height of the logo/menu area?
Is there a way to decrease the height of the menu bar/logo area in Encounters? I can’t seem to find where that is defined in the CSS.
Sort of yes… in the theme’s style.css around line 157 is this:
.scanlines-header, .scanlines-footer { min-height:100px; background: transparent url('images/scanlines.png') 0 0 repeat; }
You would need to change the min-height or add a new style to override such as:
.scanlines-header { min-height: 50px; }
…or you can also just do height: auto;