Slidesjs autoHeight issue

I use Slidesjs http://slidesjs.com/ and the problem is with autoHeight. Exactly in Chrome the height of slides is 0px but after clicking next slide the height become as it should be. Does any know how to fix that? And here is the link http://demo.themeuniverse.net/cottoncandy/

if (option.autoHeight) {
                control.children().css({
                    height: 'auto'
                });

Upvotes: 0

Views: 3660

Answers (1)

N1ck
N1ck

Reputation: 2001

It's quite hard to tell with your example, much easier if you could reproduce the issue and put it on http://jsfiddle.net . Anyway I copy and pasted your html from source and managed to get it working on this fiddle here: http://jsfiddle.net/vrrnz/6/

I would also suggest giving your container a set width and height (seeing as it's probably not likely to be changing).

Upvotes: 1

Related Questions