I am trying to implement the slider shown here: http://www.mivamerchant.com/blog/how...refront-slider . I can't even seem to get the demo version of the linked download ( jQuery’s SimpleFader v1.0.0) to work.
Head code:
Here is the code on the content tab of the sfnt page.
Here is the url were this slider should be showing up:
What am i missing here?
Thanks in advance
Head code:
Code:
<head>
<title>Storefront | &mvt:store:name;</title>
<meta name="description" content="Welcome to our storefront.">
<base href="&mvt:global:basehref;">
<mvt:item name="head" param="head_tag" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/jquery-1.4.3.min.js"></script>
<script type="text/javascript" src="js/simplefader-1.0.0.min.js"></script>
</head>
Code:
<div style="width: 720px; margin: 0px auto;">
<!-- Id of SimpleFader top div must be "simplefader" //-->
<div id="simplefader">
<!-- All Screens must have class "screen" //-->
<div id="screen1" class="screen" style="background-image: url('images/demo1.jpg');">
</div>
<div id="screen2" class="screen" style="background-image: url('images/demo2.jpg');">
</div>
<div id="screen3" class="screen" style="background-image: url('images/demo3.jpg');">
</div>
<!-- Empty div for controls must be "simplefadercontrols" //-->
<div id="simplefadercontrols"></div>
</div>
</div>
What am i missing here?
Thanks in advance
Comment