I am using jCrouselLite. if i set visible 3 and if there is only single element for slider so there is no anything appear. if you remove second element comment tag so both of them appear in the list. You can try it on jsfiddle

Solution can be that setting visible count to element count but this is not what i am looking for.

It looks this is a bug. How can i solve this problem ?

link|improve this question

47% accept rate
You should provide your code. – George Stocker Oct 12 '11 at 14:01
feedback

2 Answers

Why don't you decrease the visible count if the number of image is one?

$('#carousel').jCarouselLite({
    btnNext: ".next",
    btnPrev: ".prev",
    visible: ($("#carousel li img").length>1)?3:2
});
link|improve this answer
I don't want this because changing visible count confuse users. If there is no enough content in slider i prefer to keep others empty. – AnyOne Oct 11 '11 at 7:51
feedback

try this

#carousel { 
    border:1px 
    solid black;
    min-width: 0px !important;

}

this will force the carousel div to be at 0px when there is no picture in it and will grow as much as you need when adding pictures

http://jsfiddle.net/g6uLj/3/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.