views:

1243

answers:

4

I have this plug-in in use on my home page which is running on WAMP. It works great in every browser except Safari and Google Chrome. In those browsers the carousel doesn’t show up when I first load the page, nor when I hit reload. When I navigate to the home page via the on page navigation link then it shows up.

Any ideas what could be causing this?

Thanks, Jeremy

A: 

I'm using jcarousel lite in my website and have the same problem. Is works fine in other browser but in chrome It's auto set width and height to 0. Anyone have an experience on it help please!!

at last, I'm using css to hack their height and width with !important and it run.
A: 

hi !

i have the same problem, somebody knows the answer

frankling
A: 

try putting your gallery initialization in the window load function, something like so:

$(window).load(function() {

    $(".gallery").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
    });
});
Alain
+2  A: 

Had this problem too, found that by giving the pictures i was displaying a width="nn px" and height="nn px" solved my problem ;)

DizzyC