Home Forums WordPress Themes – Premium Encounters Decrease height of the logo/menu area?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #14150
    Ellen
    Participant

    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.

    #14151
    Sushil Adhikari
    Moderator

    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;

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.