Skip to content

Instantly share code, notes, and snippets.

@kathangeorg
Created March 21, 2012 11:33
Show Gist options
  • Save kathangeorg/2146326 to your computer and use it in GitHub Desktop.
Save kathangeorg/2146326 to your computer and use it in GitHub Desktop.
Flexslider order
// sort flexslider correctly
$(document).ready(function(){
var z = 999;
$("ul.slides li").each(function(){
z-=1;
$(this).css({'z-index':z});
});
$('.flexslider').flexslider({
slideToStart: 0,
animation: "fade"
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment