Hello, slider slick http://kenwheeler.imtqy.com/slick/ , when loading the page, it shows all the slides at once, and only then it scrolls up, it looks not very nice. I tried to fix this case through the CCS but it does not help, because even if you register the display with wraper: none; the lag still happens and only then the slider disappears, are there any ideas?

  • <code> .middle__slider_item {display: none;} .middle__slider_item: first-child {display: block;} .slick-initialized .middle__slider_item {display: block;} </ code> - Stas Ryabtsev
  • .middle__slider_item {display: none;} .middle__slider_item: first-child {display: block;} .slick-initialized .middle__slider_item {display: block;} This code helped if anyone is interested, we make the display non-slides except the first, but at initialization we show everything - Stas Ryabtsev

0