Various CSS shadows
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
| /* Remove the code that I had sent before and replace with this */ | |
| #sitenav { | |
| top: 0; | |
| position: fixed; | |
| left: 50%; | |
| margin-left: -485px; | |
| } |
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
| <div class="product-utilities"> | |
| <div class="quick-filters utility-filters"> | |
| <span class="utility-heading">Filter By:</span> | |
| <span class="utility-links"> | |
| <a href="{{ category.id }}?filter_by_stock=in-stock">In Stock</a> | |
| <a href="{{ category.id }}?filter_by_stock=out-of-stock">Out of Stock</a> | |
| <a href="{{ category.id }}">Show All</a> | |
| </span> | |
| </div> |
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
| #click-mask { | |
| background: transparent; | |
| display: none; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| height: 100%; | |
| width: 100%; | |
| z-index: 6; | |
| } |
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
| add_action('init', 'remove_editor_init'); | |
| function remove_editor_init() { | |
| // if post not set, just return | |
| // fix when post not set, throws PHP's undefined index warning | |
| if (isset($_GET['post'])) { | |
| $post_id = $_GET['post']; | |
| } else if (isset($_POST['post_ID'])) { | |
| $post_id = $_POST['post_ID']; | |
| } else { | |
| return; |
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
| css: | |
| css: | |
| - css/crystal/iefix.css | |
| - css/crystal/foundation.css | |
| - css/crystal/visibility.css | |
| - css/crystal/heisenberg.css | |
| - css/crystal/catbrowse.css | |
| - css/crystal/footer.css | |
| - css/crystal/cart.css |
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
| {{#thumbnailLink}} | |
| <img src="{{ thumbnailLink }}" alt="{{ name }}" /> | |
| {{/thumbnailLink}} | |
| {{^thumbnailLink}} | |
| <h3>default</h3> | |
| {{/thumbnailLink}} |
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
| } | |
| // display widget | |
| function widget($args, $instance) { |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| /* ============================================================================== | |
| /* ====== PRODUCT PRICE & QTY BOX | |
| /* ============================================================================= */ | |
| .product-price-qty { | |
| background: #f7f7f7; | |
| border: 1px solid #d0d0d0; | |
| display: inline-block; | |
| height: 36px; | |
| line-height: 36px; |