Reply To: Customize Header Image Height

Homepage Community Forums Epik Theme Support Customize Header Image Height Reply To: Customize Header Image Height

#3115
Wes
Moderator

    Now you’ll just need to edit the height in your css. It’s currently set at 120px. If you look around line 681 in your style.css file you’ll see this –

    .header-image #title,
    .header-image #title a,
    .header-image #title-area {
    display: block;
    float: left;
    min-height: 140px;
    overflow: hidden;
    text-indent: -9999px;
    width: 50%;
    }

    I’ve changed the height to 140px. If you do this then them bottom part will show. It’s cut off because the height was too small for your image. You can change it to 150px if you need to as well.

    Let me know if that works.