i am having height problems of my responsive carousel using carouFredSel.
since the images are responsive and the carousel is also set to responsive.
It still ad
I had this same issue and did the following:
Removed the lines from 3648 to 3652, these lines looks like:
if (is_number(o.items[o.d[dim]]))
{
console.log(o.d[dim]);
return o.items[o.d[dim]];
}
And this code is inside function ms_getLargestSize.
This solved the List height problem. To solve the wrapper height I changed from true to false the param at line ~3609, the line looks like:
var sz = cf_mapWrapperSizes(ms_getSizes($v, o, true), o, false);
Change to:
var sz = cf_mapWrapperSizes(ms_getSizes($v, o, false), o, false);
After this, the slider is working fine when resized and isn't cropping the elements like divs anymore!
I hope it helps, Rafael Angeline