Reply To: How to remove padding around slider wide widget?

Homepage Community Forums Epik Theme Support How to remove padding around slider wide widget? Reply To: How to remove padding around slider wide widget?

#8957
Wes
Moderator

    Take a look at this comment – https://appfinite.com/topic/slider-wide-fullscreen/#post-8502 ….you just need to remove that space from the .head-wrap

    Then since the bottom of your image is showing 12px of margin, you’ll want to add this to your css –

    .slider-wide img {
        margin: 0;
    }

    Then there will be a tiny bit of space left which can be fixed by adding line-height: 0; to .slider-wide .widget

    .slider-wide .widget {
        line-height: 0;
        margin: 0 0 0px;
    }