vinay...@javelintools.com
unread,Nov 12, 2014, 8:27:30 PM11/12/14Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sly...@googlegroups.com, rmsdes...@gmail.com, fizik...@gmail.com
On Tuesday, October 14, 2014 9:09:14 AM UTC+5:30,
fizik...@gmail.com wrote:
> I added first slide <li> custom , so it didnt show last item.. then i added fixed width for first slider..and all is working... only Resize dont calculate right size of <li> elements..and that sux
I faced this issue too. The width was less by one pixel (always). The issue was reproducible only in Firefox and Safari. Worked fine on Chrome. I made the following jQuery call immediately after I called .sly()
$('section-slidee ul').css('width', function(i){
return $(this).width() + 1;
});
That did the trick.