Skip to content

Instantly share code, notes, and snippets.

@seandogg
Last active November 13, 2018 19:00
Show Gist options
  • Save seandogg/9e63c2e9b66c69949b9e37fd61ce893c to your computer and use it in GitHub Desktop.
Save seandogg/9e63c2e9b66c69949b9e37fd61ce893c to your computer and use it in GitHub Desktop.
product-description-tabs.liquid
<ul class="product-tabs">
<li class="current"><a href="#fragment-1"><span>Description</span></a></li>
<li><a href="#fragment-2"><span>Ingredients</span></a></li>
<li><a href="#fragment-3"><span>Reviews</span></a></li>
</ul>
<div class="tab">
<div id="fragment-1" class="tab-content">
<p>Description Content here</p>
<p> </p>
</div>
<div id="fragment-2" class="tab-content" style="display: none;">
<p>Ingredient Content here</p>
<p> </p>
</div>
<div id="fragment-3" class="tab-content" style="display: none;"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment