Flashing Slides in Content Slider

I built a fork of content slider for internal use within my company. It had the flashing slides issue but I sidestepped it by having it use JS instead of CSS. In any case, because it is a fork, it did not get the benefits of the bug fix that you guys recently created for 1.7.4:
“Fixed a bug with flashing slides in the Content Slider module.”

Could I please get the source code changes that were made to fix the flashing slides issue?

Thank you

Hey Thomas,

We simply added additional styling. Check out the snippet below. You can add it to the frontend.css file. :slight_smile:

.fl-content-slider .fl-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

Ben

Thank You!!!

No worries, and glad I could help. Enjoy! :slight_smile:

Ben