jquery - jCarousel custom start position -


i need set custom start position jcarousel list.

i've got 4 visible slides inside carousel, need have 2 of them visible in middle of carousel , half of 1 left side , half of 1 right side.

how looks now

how should be

qcarousel official documentation says in order set start position through css should use this:

.jcarousel ul {     left: -150px; } 

but gets overrided jcarousel script set position:left 0 again.

and event method can choose slide start from, first slide or second.

how should fix this?

try

.jcarousel ul {     left: -150px !important; } 

or

wrap carousel in container overflow:hidden , adjust carousel within obtain correct positioning.


Comments