Fade out any carousel/section left and right – overlay

WordPress CSS July 23, 2026

Add this code to respective carousel or section:

selector {

position: relative;
    overflow: hidden;
}
selector::before,
selector::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width:400px; /* Change this*/
    pointer-events: none;
    z-index: 1;
}
selector::before {
    left: 0;
    Z-index: 2 !important;
    background: linear-gradient(to right, #000, transparent) !important;

}

selector::after {

right: 0;
    background: linear-gradient(to left, #000, transparent) !important;

}

Sources:

Go and Fade the Carousel Edges – Elementor WordPress