Carousel doesn't render properly in a hidden div.
====================================================================
[ http://jsfiddle.net/k75fyzy4/1/ ]I've added a fiddle- but I don't see this working properly in fiddle either.
http://jsfiddle.net/k75fyzy4/1/
Here's everything in a single page.
https://captainmccrank.github.io/
====================================================================
====================================================================
I'm hoping to see the carousel images rendered immediately when the div is made visible.
====================================================================
Carousel images aren't visible until you resize the browser window.
====================================================================
Hi @CaptainMcCrank , please try out the suggestions in https://github.com/kenwheeler/slick/issues/158
I have a similar issue see the gif below. Any suggestions @paulinetheitgirl ? :)

Hi @nealoke , can you provide a sample of your code? Gist (https://gist.github.com/) or Codepen.io would be great.
I got the same problem as well. bannerA is fine. It is shown every time. However, bannerB does not show until resizing the window or click a dot. The same behaviour as @nealoke. Any help will be welcome. I tried many methods, including reinitialize again after loading the images. Thanks.
$("#bannerA").slick({
dots: true,
infinite: true,
speed: 300,
slidesToShow: 1,
adaptiveHeight: true
});
$("#bannerB").slick({
dots: true,
infinite: true,
speed: 300,
slidesToShow: 2,
adaptiveHeight: true
});
for (let image of this.images) {
$("#bannerA").slick('slickAdd',
image
);
if (image.isBanner) {
$("#bannerB").slick('slickAdd',
image
);
$("#bannerA").slick('refresh');
$("#bannerB").slick('refresh');
}
}
Hi @benedict1986, the slickAdd examples on http://kenwheeler.github.io/slick/ use divs. Make sure your slide content is enclosed in divs.
@paulinetheitgirl yes totally works ;)