Last active
November 13, 2018 19:00
-
-
Save seandogg/9e63c2e9b66c69949b9e37fd61ce893c to your computer and use it in GitHub Desktop.
product-description-tabs.liquid
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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