Many of the most popular ones I have tried restrict the height.
jCarousel for sure does & Tiny Carousel just didn't work for me.
Anyone have any suggestions on what other plugin might work?
Thanks.
Many of the most popular ones I have tried restrict the height.
jCarousel for sure does & Tiny Carousel just didn't work for me.
Anyone have any suggestions on what other plugin might work?
Thanks.
You could try building something custom based on the Cycle plugin... Beyond that youll have to elaborate a tab more on the restricting of height and the issues youve run in to.
In Tiny Carousel you can set the height dynamically with a callback.
var oSlider = $('#slider-code');
oSlider.tinycarousel({
callback: function(element){
element.css({ 'height': 100 });
$('.viewport', oSlider).css({ 'height': 100});
}
});
Something like this havent tested so there could be a bug :P. Replace the 100 with the height you need;