In the jquery.jcarousel.js (line 134) the jcarousel-clip is no longer set to overflow hidden
this.clip.addClass(this.className('jcarousel-clip')).css({
overflow: 'hidden',
position: 'relative'
});
as is earlier version.
I can set my own css for this - but is that intentional?

Comments

quicksketch’s picture

We recently updated from jCarousel 0.2.7 to 0.2.8, if it's not intentional, then this would be filed against the jCarousel JS library (https://github.com/jsor/jcarousel/issues). We only use the jCarousel library in its stock form, we don't modify it in any way. I would assume this was intentional however, as avoiding any inline CSS wherever possible is a good idea.

iAugur’s picture

Status: Active » Closed (works as designed)

Fair enough! It is a simple CSS addition - thanks

dwightaspinwall’s picture

Had the same issue as you with 6.x-2.5 and later, where the carousel content was appearing / bleeding / visible on the page. Adding a little CSS fixed it:

.jcarousel-clip {
  overflow: hidden;
}

Thanks.

dwightaspinwall’s picture

Issue summary: View changes

spelling