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
@include at-query($max, $small) { | |
.hero__slide .hero__title { | |
font-size: 2em /* Edit to taste */; | |
} | |
} |
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
.spr-badge[data-rating="0.0"] { | |
display: none; | |
} |
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
{% comment %} | |
Change .item-product-photo from this: | |
{% endcomment %} | |
<div class="grid-item medium--four-sixths large--four-sixths push--one-sixth item-product-photo"> | |
{% comment %} | |
To that: | |
{% endcomment %} | |
Remove some cards, or add the following at the very bottom of your theme.scss.liquid stylesheet:
.payment-icons {
white-space: nowrap;
li {
margin: 0 5px 5px;
}
}
- Add a bunch of images to a 'page'. Just images. No markup besides img elements.
- Create a page.lookbook template and in it, add the code below.
- Assign template to page.
- Add below code before the
</body>
tag inside theme.liquid. - [Configuration] Look at the Liquid variables declared at the top. Those are set to sensible defaults, but whatever rocks your world.
The “collage” style is enforced on the homepage, it cannot be turned off in the theme settings. Turning that style off in theme settings only turns it off on collection pages.
In the snippet file featured-products.liquid, replace <div class="grid grid-collage">
with <div class="grid grid-uniform">
. In the same file, replace {% include 'product-grid-collage' %}
with {% include 'product-grid-item' %}
.
Direct link to snippet file: https://www.shopify.com/admin/themes/current?key=snippets/featured-products.liquid