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
<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
/* -- 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
{% 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 |
OlderNewer