Deleting Thumb Images in the Index Page of Mobile Monkey Templates

If you wanted to delete the thumb images in the index page of the Mobile Monkey Templates you should change the type of slider used.

Open the index.html of the Mobile Monkey template that you are working on and click the edit icon.  Click HTML at the top or bottom of the simulator.
 

Look for the code below:

<script type="text/javascript"> 
$(function(){ 
SyntaxHighlighter.all(); 
}); 
$(window).load(function(){ 
$('.flexslider').flexslider({ 
animation: "slide", 
controlNav: "thumbnails", 
start: function(slider){ 
$('body').removeClass('loading'); 
} 
}); 
});

</script>

 

Replace it with the code below:

 

<script type="text/javascript"> 
$(function(){ 
SyntaxHighlighter.all(); 
}); 
$(window).load(function() { 
$('.flexslider').flexslider({ 
animation: "slide" 
}); 
}); 
</script>

 

 

Have more questions? Submit a request