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
{% liquid | |
assign blockList = '' | |
for block in section.blocks | |
assign blockList = blockList | append: block.type | append: ',' | |
endfor | |
assign blockArray = blockList | split: "," | |
if section.settings.height == 'image-height' | |
assign padding_ratio = 1 |
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
/* -- Start Story override code removes background 1x1 image -- */ | |
.template-product .lazy-image {background-image: none !important;} | |
/* - end - */ |
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="header__wrapper"> | |
{% if section.settings.header_enable_account or section.settings.header_enable_search or section.settings.header_message != '' %} | |
<div class="info-bar showMobile"> | |
<div class="wrapper text-center"> | |
{% if shop.customer_accounts_enabled and section.settings.header_enable_account %} | |
<div class="header-account-link"> | |
<a href="/account"><img src="{{ 'account.svg' | asset_url }}"></a> | |
</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
{ | |
"current": { | |
"color_account_bg": "#f3f3f3", | |
"color_account_text": "#656565", | |
"color_header_bg": "#ffffff", | |
"color_header_text": "#656565", | |
"color_body_bg": "#ffffff", | |
"color_body_text": "#656565", | |
"color_primary": "#585e71", | |
"color_splash": "#f4a482", |
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
{ | |
"current": { | |
"color_account_bg": "#dddddd", | |
"color_account_text": "#656565", | |
"color_header_bg": "#ffffff", | |
"color_header_text": "#2e3438", | |
"color_body_bg": "#ffffff", | |
"color_body_text": "#656565", | |
"color_primary": "#359ac8", | |
"color_splash": "#f4a482", |
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
{ | |
"current": { | |
"color_account_bg": "#f3f3f3", | |
"color_account_text": "#656565", | |
"color_header_bg": "#ffffff", | |
"color_header_text": "#656565", | |
"color_body_bg": "#ffffff", | |
"color_body_text": "#656565", | |
"color_primary": "#585e71", | |
"color_splash": "#f4a482", |
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
{ | |
"current": { | |
"color_account_bg": "#dddddd", | |
"color_account_text": "#2e3344", | |
"color_header_bg": "#ffffff", | |
"color_header_text": "#2e3438", | |
"color_body_bg": "#ffffff", | |
"color_body_text": "#656565", | |
"color_primary": "#1990c6", | |
"color_splash": "#f4a482", |
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
{ | |
"current": { | |
"color_account_bg": "#dddddd", | |
"color_account_text": "#2e3344", | |
"color_header_bg": "#ffffff", | |
"color_header_text": "#2e3438", | |
"color_body_bg": "#ffffff", | |
"color_body_text": "#656565", | |
"color_primary": "#1990c6", | |
"color_splash": "#f4a482", |
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
{%- assign collection_image_size = 'x630' -%} | |
{%- assign grid_item_width = 'large--one-half' -%} | |
{% case section.settings.grid %} | |
{% when 1 %} | |
{%- assign grid_item_width = 'large--one-half collection-grid--single' -%} | |
{%- assign collection_image_size = 'x630' -%} | |
{% when 2 %} | |
{%- assign grid_item_width = 'large--one-half' -%} | |
{%- assign collection_image_size = 'x630' -%} |
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
{%- assign collection = collections[section.settings.collection] -%} | |
{% case section.settings.grid %} | |
{% when 1 %} | |
{% assign grid_width_large = 'large--one-third push--large--one-third clear' %} | |
{% assign grid_width_medium = 'medium--one-half push--medium--one-quarter clear' %} | |
{% assign grid_width_small = 'small--one-whole' %} | |
{% when 2 %} | |
{% assign grid_width_large = 'large--one-half' %} | |
{% assign grid_width_medium = 'medium--one-half' %} |
NewerOlder