Reply To: Epik Header Reducing Gap

Homepage Community Forums Epik Theme Support Epik Header Reducing Gap Reply To: Epik Header Reducing Gap

#10647
Wes
Moderator

    Just saw your tweet 馃檪

    If you want to remove the space under the slider, you can do so by looking at line 1168 for this –

    .slider .wrap {
        margin: 0 auto 20px;
        padding: 0;
        width: 1140px;
    }

    Change the 20px to 0 and that will remove that space.

    .slider .wrap {
        margin: 0 auto 0;
        padding: 0;
        width: 1140px;
    }