Reputation: 21
Not sure what is going on, but in Firefox my bxSlider is doing some crazy things, view it here to see what I mean here I'm not sure what else I need to do.. seems to work alright in the other browsers.
Upvotes: 2
Views: 3134
Reputation: 149
For friends who still have problems. just use the following code after the bxslider is load. if lets say your slider is bxsliderGallery.change height of the image in each slider to your appropraite height. In my case it was 81px. then move the next and prev according to height.
if($.browser.mozilla)
{
$('.bxsliderGallery').parents('.bxwrapper').find('img').css('height','81px');
}
Upvotes: 0
Reputation: 61
I also had a problem with BX-Slider
but I had floating elements above, so I just used clear:both;
on bx container.
Upvotes: 6