Last active
February 9, 2017 18:06
-
-
Save davelowensohn/a161c4c4e9231a0fed9844e41d970daa to your computer and use it in GitHub Desktop.
Shopify "Final Sale" sticker (for product & cart)
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
{% if item.product.tags contains 'final-sale' %} | |
<div class="final-sale-warning">FINAL SALE</div> | |
{% endif %} |
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
{% if product.tags contains 'final-sale' %} | |
<div class="final-sale-warning">FINAL SALE</div> | |
{% endif %} |
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
.final-sale-warning { | |
color: #fff; | |
background-color: #000; | |
display: inline-block; | |
padding: 2px 5px; | |
font-size: 10px; | |
letter-spacing: 1px; | |
margin-top: 5px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment