I have an issue where my flexslider is starting at the last slide instead of the first, even though the controls start at the first.
HTML/JS is very simple:
<section id="section-1">
<script>
$(function (){
$('#section-1 .flexslider').flexslider(
{
animation: "slide",
directionNav: false,
controlsContainer: "#controls-1",
pauseOnAction: false,
}
);
});
</script>
<div class="container" id="controls-1">
</div>
<div class="flexslider">
<ul class="slides">
<li>
<img src="2014/07/PEP_Intro.03.jpg" alt="" />
</li>
<li>
<img src="2014/07/PEP_Intro.02.jpg" alt="" />
</li>
<li>
<img src="2014/07/PEP_Intro.011.jpg" alt="" />
</li>
</ul>
</div>
URL is here:
http://54.79.96.139/pepper/
Has anyone had this issue before? Weirdly when I change back to the "fade" animation the issue goes away.