I’ve been working on this for 2 days now and it’s a little out of my league, I was hoping a cyber samaritan could help me out.
So Shopify has assets that you upload then call upon them in your HTML and Liquid coding. As far as I understand the HTML section goes in the theme.liquid part and to display the slider on the front page the jQuery goes into the index.liquid. Right now the banner flashes for a split second before disappearing. So the HTML I have in the theme.liquid is:
{% case template %}
{% when 'index' %}
<!-- include jQuery library -->
{{ 'jquery.js' | asset_url | script_tag }}
<!-- include Cycle plugin -->
{{ 'jquery.cycle.all.js' | asset_url | script_tag }}
{{ 's3slider.js' | asset_url | script_tag }}
{{ 's3slider.css' | asset_url | stylesheet_tag }}
<script language="javascript" type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function() {
jQuery('#s3slider').s3Slider({
timeOut: 4000
});
});
</script>
{% endcase %}
And the code I put into the index.liquid to display the slider where I want it is:
<div id="s3slider">
<ul id="s3sliderContent">
<li class="s3sliderImage">
<a href="{{ 'banner1.jpg' | asset_url }}" />
{{ 'banner1.jpg' | asset_url | img_tag }}
</a>
<span class="left"><strong>Title text 1</strong><br />Content text...</span>
</li>
<li class="s3sliderImage">
<a href ="{{ 'banner2.jpg' | asset_url }}" />
{{ 'banner2.jpg' | asset_url | img_tag }}
</a>
<span class="right"><strong>Title text 2</strong><br />Content text...</span>
</li>
<div class="clear s3sliderImage"></div>
</ul>
</div>
<!-- // slider -->
If you can suggest anything that would be great! And if you need anymore information I’ll get that to you ASAP.
Thank you.