This file contains 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
<div class="form-horizontal"> | |
<label for="sortBy">Sort by</label> | |
<select name="sortBy" id="sortBy"> | |
<option value="manual">Featured</option> | |
<option value="best-selling">Best Selling</option> | |
<option value="title-ascending">Alphabetically, A-Z</option> | |
<option value="title-descending">Alphabetically, Z-A</option> | |
<option value="price-ascending">Price, low to high</option> | |
<option value="price-descending">Price, high to low</option> | |
<option value="created-descending">Date, new to old</option> |
This file contains 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 you're using our theme_gem to upload your files, make sure you close your | |
input and br tags as if it were XHTML. | |
- eg. <br /> and <input type="text" /> | |
More info on settings: | |
- http://docs.shopify.com/themes/theme-templates/settings | |
--> | |
<!-- Colors --> |
This file contains 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
.header-cart-btn { | |
@extend .btn; | |
position: relative; | |
font-size: 19px; | |
line-height: 19px; | |
padding-top: 12px; | |
padding-bottom: 10px; | |
border: 0 none; | |
margin-left: $gutter/2; | |
vertical-align: top; |
This file contains 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
/* Simple jQuery Equal Heights @version 1.5.1. Copyright (c) 2013 Matt Banks. Dual licensed under the MIT and GPL licenses. */ | |
!function(a){a.fn.equalHeights=function(){var b=0,c=a(this);return c.each(function(){var c=a(this).innerHeight();c>b&&(b=c)}),c.css("height",b)},a("[data-equal]").each(function(){var b=a(this),c=b.data("equal");b.find(c).equalHeights()})}(jQuery); | |
window.timber = window.timber || {}; | |
timber.cache = { | |
// General | |
html: $('html'), | |
body: $('body'), | |
equalHeight: $('.equal-height'), |
This file contains 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
/*============================================================================ | |
#Product Reviews - Free Shopify App | |
- https://apps.shopify.com/product-reviews | |
==============================================================================*/ | |
#shopify-product-reviews { | |
margin: 0; | |
.spr-header-title { | |
@extend h1; | |
} |
OlderNewer