Reply To: How to remove extra white space from above and below SLIDER WIDE?

Homepage Community Forums Epik Theme Support How to remove extra white space from above and below SLIDER WIDE? Reply To: How to remove extra white space from above and below SLIDER WIDE?

#12530
Wes
Moderator

    The space underneath the slider isn’t coming from the slider itself, but the div outside of of that widget area. The spacing is there by default in case you wanted to add multiple widgets in that section….this would keep them separate from each other instead of being too close together. You can adjust that by editing line 1168 in your css –

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

    Change the 20px to 0 and that will remove half of it.

    The other half is from line 1174 –

    .slider .widget {
        margin: 0 0 20px;
    }

    Change the 20px to 0 as well, and that will remove the space under the slider area. Let me know if that works.