Thank you!
{{ 'section-header.css' | asset_url | stylesheet_tag }}
{{ 'rtl-section-header.css' | asset_url | stylesheet_tag }}
{%- if section.settings.show_megamenu -%}
{%- endif -%}
{%- if section.settings.show_megamenu -%}
{%- endif -%}
{% render 'header-style' %}
<{% if section.settings.show_sticky_header %}sticky-header{% else %}div{% endif %} class="header-wrapper{% if section.settings.show_line_separator %} header-wrapper--border-bottom{% endif %}">
{%- liquid
if section.blocks.size > 0
assign menu_tab = section.blocks | where: "type", "tab"
assign page_handle = page.handle
endif
-%}
{%- if menu_tab.size > 3 -%}
{%- endif -%}
{%- unless section.settings.show_search -%}
{%- endunless -%}
{% javascript %}
class StickyHeader extends HTMLElement {
constructor() {
super();
}
connectedCallback() {
this.header = document.getElementById('shopify-section-header');
this.headerBounds = {};
this.currentScrollTop = 0;
this.preventReveal = false;
this.onScrollHandler = this.onScroll.bind(this);
this.hideHeaderOnScrollUp = () => this.preventReveal = true;
this.addEventListener('preventHeaderReveal', this.hideHeaderOnScrollUp);
window.addEventListener('scroll', this.onScrollHandler, false);
this.createObserver();
}
disconnectedCallback() {
this.removeEventListener('preventHeaderReveal', this.hideHeaderOnScrollUp);
window.removeEventListener('scroll', this.onScrollHandler);
}
createObserver() {
let observer = new IntersectionObserver((entries, observer) => {
this.headerBounds = entries[0].intersectionRect;
observer.disconnect();
});
observer.observe(this.header);
}
onScroll() {
const scrollTop = window.pageYOffset || document.documentElement.scrollTop;
if (scrollTop > this.currentScrollTop && scrollTop > this.headerBounds.bottom) {
if(!document.body.classList.contains('open-search')){
requestAnimationFrame(this.hide.bind(this));
}
} else if (scrollTop < this.currentScrollTop && scrollTop > this.headerBounds.bottom) {
if (!this.preventReveal) {
requestAnimationFrame(this.reveal.bind(this));
} else {
window.clearTimeout(this.isScrolling);
this.isScrolling = setTimeout(() => {
this.preventReveal = false;
}, 66);
requestAnimationFrame(this.hide.bind(this));
}
} else if (scrollTop <= this.headerBounds.top) {
requestAnimationFrame(this.reset.bind(this));
}
this.currentScrollTop = scrollTop;
}
hide() {
this.header.classList.add('shopify-section-header-hidden', 'shopify-section-header-sticky');
this.closeMenuDisclosure();
this.closeDropdownPopup();
document.body.classList.add('scroll-down');
document.body.classList.remove('scroll-up');
}
reveal() {
this.header.classList.add('shopify-section-header-sticky', 'animate');
this.header.classList.remove('shopify-section-header-hidden');
document.body.classList.add('scroll-up');
document.body.classList.remove('scroll-down');
}
reset() {
this.header.classList.remove('shopify-section-header-hidden', 'shopify-section-header-sticky', 'animate');
document.body.classList.remove('scroll-down', 'scroll-up');
}
closeMenuDisclosure() {
this.disclosures = this.disclosures || this.header.querySelectorAll('details-disclosure');
this.disclosures.forEach(disclosure => disclosure.close());
}
closeDropdownPopup() {
if(this.querySelector('.dropdown-language-currency')){
this.querySelector('.dropdown-language-currency').classList.remove('show');
}
}
}
customElements.define('sticky-header', StickyHeader);
{% endjavascript %}
{% render 'header-script' %}
{% schema %}
{
"name": "t:sections.header.name",
"class": "shopify-section-header",
"settings": [
{
"type": "header",
"content": "t:sections.header.settings.header__1.content"
},
{
"type": "checkbox",
"id": "show_line_separator",
"label": "t:sections.header.settings.general.label__1",
"default": false
},
{
"type": "checkbox",
"id": "show_sticky_header",
"label": "t:sections.header.settings.general.label__2",
"info": "t:sections.header.settings.general.info",
"default": true
},
{
"type": "checkbox",
"id": "show_wishlist",
"label": "t:sections.header.settings.general.label__3",
"default": true
},
{
"type": "checkbox",
"id": "show_customer",
"label": "t:sections.header.settings.general.label__4",
"default": true
},
{
"type": "checkbox",
"id": "show_cart",
"label": "t:sections.header.settings.general.label__5",
"default": true
},
{
"type": "header",
"content": "t:sections.header.settings.header__19.content"
},
{
"type": "link_list",
"id": "menu",
"label": "t:sections.header.settings.menu.label__1",
"default": "main-menu"
},
{
"type": "checkbox",
"id": "show_menu_tab",
"label": "t:sections.header.settings.menu.label__2",
"default": true
},
{
"type": "checkbox",
"id": "show_megamenu",
"label": "t:sections.header.settings.menu.label__3",
"default": true
},
{
"type": "checkbox",
"id": "show_resize_menu",
"label": "t:sections.header.settings.menu.label__4",
"default": true
},
{
"type": "header",
"content": "t:sections.header.settings.header__2.content"
},
{
"type": "color_background",
"id": "header_top_bg",
"label": "t:sections.general.settings.color.label__1",
"default": "#000000"
},
{
"type": "color",
"id": "header_top_color",
"label": "t:sections.general.settings.color.label__3",
"default": "#FFFFFF"
},
{
"type": "header",
"content": "t:sections.header.settings.header__3.content"
},
{
"type": "paragraph",
"content": "t:sections.general.settings.color.paragraph__1.content"
},
{
"type": "color_background",
"id": "text_bg",
"label": "t:sections.general.settings.color.label__1",
"default": "#000000"
},
{
"type": "color",
"id": "text_color",
"label": "t:sections.general.settings.color.label__2",
"default": "#808080"
},
{
"type": "paragraph",
"content": "t:sections.general.settings.color.paragraph__2.content"
},
{
"type": "color_background",
"id": "text_bg_active",
"label": "t:sections.general.settings.color.label__1",
"default": "#2E2E2E"
},
{
"type": "color",
"id": "text_color_active",
"label": "t:sections.general.settings.color.label__2",
"default": "#FFFFFF"
},
{
"type": "header",
"content": "t:sections.header.settings.header__4.content"
},
{
"type": "color_background",
"id": "header_bottom_bg",
"label": "t:sections.general.settings.color.label__1",
"default": "#FFFFFF"
},
{
"type": "header",
"content": "t:sections.header.settings.header__5.content"
},
{
"type": "color_background",
"id": "header_mobile_bg",
"label": "t:sections.general.settings.color.label__1",
"default": "#FFFFFF"
},
{
"type": "color",
"id": "header_mobile_color",
"label": "t:sections.general.settings.color.label__3",
"default": "#000000"
},
{
"type": "header",
"content": "t:sections.header.settings.header__6.content"
},
{
"type": "select",
"id": "logo_type",
"label": "t:sections.header.settings.logo.label__1",
"default": "image",
"options": [
{
"value": "image",
"label": "t:sections.header.settings.logo.options__1"
},
{
"value": "text",
"label": "t:sections.header.settings.logo.options__2"
},
{
"value": "icon",
"label": "t:sections.header.settings.logo.options__3"
}]
},
{
"type": "paragraph",
"content": "t:sections.header.settings.logo.paragraph__1"
},
{
"type": "image_picker",
"id": "logo",
"label": "t:sections.header.settings.logo.label__2",
"info": "t:sections.header.settings.logo.info"
},
{
"type": "image_picker",
"id": "logo_mobile",
"label": "t:sections.header.settings.logo.label__3",
"info": "t:sections.header.settings.logo.info"
},
{
"type": "range",
"id": "logo_width",
"min": 50,
"max": 250,
"step": 5,
"unit": "t:sections.header.settings.logo.unit",
"label": "t:sections.header.settings.logo.label__4",
"default": 145
},
{
"type": "range",
"id": "logo_width_mobile",
"min": 50,
"max": 150,
"step": 5,
"unit": "t:sections.header.settings.logo.unit",
"label": "t:sections.header.settings.logo.label__5",
"default": 120
},
{
"type": "paragraph",
"content": "t:sections.header.settings.logo.paragraph__2"
},
{
"type": "textarea",
"id": "logo_text",
"label": "t:sections.general.settings.content.label__2",
"info": "t:sections.header.settings.logo.info"
},
{
"type": "range",
"id": "logo_font_size",
"label": "t:settings_schema.typography.settings.font_size.label",
"min": 15,
"max": 30,
"step": 1,
"unit": "t:settings_schema.typography.settings.font_size.unit",
"default": 30
},
{
"type": "select",
"id": "logo_font_weight",
"label": "t:settings_schema.typography.settings.font_weight.label",
"default": "900",
"options": [
{
"value": "400",
"label": "t:settings_schema.typography.settings.font_weight.options__1"
},
{
"value": "500",
"label": "t:settings_schema.typography.settings.font_weight.options__2"
},
{
"value": "600",
"label": "t:settings_schema.typography.settings.font_weight.options__3"
},
{
"value": "700",
"label": "t:settings_schema.typography.settings.font_weight.options__4"
},
{
"value": "800",
"label": "t:settings_schema.typography.settings.font_weight.options__5"
},
{
"value": "900",
"label": "t:settings_schema.typography.settings.font_weight.options__6"
}]
},
{
"type": "select",
"id": "logo_text_transform",
"label": "t:settings_schema.typography.settings.text_transform.label",
"default": "uppercase",
"options": [
{
"value": "normal",
"label": "t:settings_schema.typography.settings.text_transform.options__1"
},
{
"value": "capitalize",
"label": "t:settings_schema.typography.settings.text_transform.options__2"
},
{
"value": "uppercase",
"label": "t:settings_schema.typography.settings.text_transform.options__3"
},
{
"value": "lowercase",
"label": "t:settings_schema.typography.settings.text_transform.options__4"
}]
},
{
"type": "color",
"id": "logo_color",
"label": "t:sections.general.settings.color.label__2",
"default": "#FFFFFF"
},
{
"type": "paragraph",
"content": "t:sections.header.settings.logo.paragraph__3"
},
{
"type": "textarea",
"id": "logo_icon",
"label": "t:sections.general.settings.content.label__8",
"info": "t:sections.header.settings.logo.info"
},
{
"type": "range",
"id": "logo_icon_width",
"min": 5,
"max": 250,
"step": 5,
"unit": "t:sections.header.settings.logo.unit",
"label": "t:sections.header.settings.logo.label__9",
"default": 145
},
{
"type": "range",
"id": "logo_icon_height",
"min": 5,
"max": 250,
"step": 5,
"unit": "t:sections.header.settings.logo.unit",
"label": "t:sections.header.settings.logo.label__10",
"default": 145
},
{
"type": "range",
"id": "logo_icon_width_mobile",
"min": 5,
"max": 250,
"step": 5,
"unit": "t:sections.header.settings.logo.unit",
"label": "t:sections.header.settings.logo.label__11",
"default": 100
},
{
"type": "range",
"id": "logo_icon_height_mobile",
"min": 1,
"max": 50,
"step": 1,
"unit": "t:sections.header.settings.logo.unit",
"label": "t:sections.header.settings.logo.label__12",
"default": 50
},
{
"type": "header",
"content": "t:sections.header.settings.header__7.content"
},
{
"type": "checkbox",
"id": "show_search",
"label": "t:sections.header.settings.header_search.label__1",
"default": true
},
{
"type": "select",
"id": "header_search_style",
"label": "t:sections.header.settings.header_search.label__2",
"default": "full",
"options": [
{
"value": "icon",
"label": "t:sections.header.settings.header_search.options__1"
},
{
"value": "full",
"label": "t:sections.header.settings.header_search.options__2"
}]
},
{
"type": "paragraph",
"content": "t:sections.header.settings.header_search.paragraph.content"
},
{
"type": "color_background",
"id": "search_bg",
"label": "t:sections.general.settings.color.label__1",
"default": "#2E2E2E"
},
{
"type":"color",
"id": "search_color",
"label": "t:sections.general.settings.color.label__2",
"default": "#FFFFFF"
},
{
"type":"color",
"id": "search_icon_color",
"label": "t:sections.general.settings.color.label__4",
"default": "#808080"
},
{
"type": "header",
"content": "t:sections.header.settings.header__8.content"
},
{
"type": "select",
"id": "lv_1_font",
"label": "t:settings_schema.typography.settings.font.label",
"options": [
{
"value": "font_1",
"label": "t:settings_schema.typography.settings.font.options__1"
},
{
"value": "font_2",
"label": "t:settings_schema.typography.settings.font.options__2"
},
{
"value": "font_3",
"label": "t:settings_schema.typography.settings.font.options__3"
}],
"default": "font_1"
},
{
"type": "range",
"id": "lv_1_font_size",
"label": "t:settings_schema.typography.settings.font_size.label",
"min": 10,
"max": 20,
"step": 1,
"unit": "t:settings_schema.typography.settings.font_size.unit",
"default": 15
},
{
"type": "select",
"id": "lv_1_font_weight",
"label": "t:settings_schema.typography.settings.font_weight.label",
"default": "700",
"options": [
{
"value": "400",
"label": "t:settings_schema.typography.settings.font_weight.options__1"
},
{
"value": "500",
"label": "t:settings_schema.typography.settings.font_weight.options__2"
},
{
"value": "600",
"label": "t:settings_schema.typography.settings.font_weight.options__3"
},
{
"value": "700",
"label": "t:settings_schema.typography.settings.font_weight.options__4"
},
{
"value": "800",
"label": "t:settings_schema.typography.settings.font_weight.options__5"
},
{
"value": "900",
"label": "t:settings_schema.typography.settings.font_weight.options__6"
}]
},
{
"type": "select",
"id": "lv_1_text_transform",
"label": "t:settings_schema.typography.settings.text_transform.label",
"default": "uppercase",
"options": [
{
"value": "normal",
"label": "t:settings_schema.typography.settings.text_transform.options__1"
},
{
"value": "capitalize",
"label": "t:settings_schema.typography.settings.text_transform.options__2"
},
{
"value": "uppercase",
"label": "t:settings_schema.typography.settings.text_transform.options__3"
},
{
"value": "lowercase",
"label": "t:settings_schema.typography.settings.text_transform.options__4"
}]
},
{
"type": "paragraph",
"content": "t:sections.general.settings.color.paragraph__1.content"
},
{
"type": "color",
"id": "lv_1_color",
"label": "t:sections.general.settings.color.label__2",
"default": "#000000"
},
{
"type": "paragraph",
"content": "t:sections.general.settings.color.paragraph__2.content"
},
{
"type": "color",
"id": "lv_1_color_hover",
"label": "t:sections.general.settings.color.label__2",
"default": "#000000"
},
{
"type": "paragraph",
"content": "t:sections.general.settings.color.paragraph__3.content"
},
{
"type": "color",
"id": "lv_1_color_mobile",
"label": "t:sections.general.settings.color.label__2",
"default": "#000000"
},
{
"type": "header",
"content": "t:sections.header.settings.header__9.content"
},
{
"type": "select",
"id": "lv_2_font",
"label": "t:settings_schema.typography.settings.font.label",
"options": [
{
"value": "font_1",
"label": "t:settings_schema.typography.settings.font.options__1"
},
{
"value": "font_2",
"label": "t:settings_schema.typography.settings.font.options__2"
},
{
"value": "font_3",
"label": "t:settings_schema.typography.settings.font.options__3"
}],
"default": "font_1"
},
{
"type": "range",
"id": "lv_2_font_size",
"label": "t:settings_schema.typography.settings.font_size.label",
"min": 10,
"max": 20,
"step": 1,
"unit": "t:settings_schema.typography.settings.font_size.unit",
"default": 16
},
{
"type": "select",
"id": "lv_2_font_weight",
"label": "t:settings_schema.typography.settings.font_weight.label",
"default": "400",
"options": [
{
"value": "400",
"label": "t:settings_schema.typography.settings.font_weight.options__1"
},
{
"value": "500",
"label": "t:settings_schema.typography.settings.font_weight.options__2"
},
{
"value": "600",
"label": "t:settings_schema.typography.settings.font_weight.options__3"
},
{
"value": "700",
"label": "t:settings_schema.typography.settings.font_weight.options__4"
},
{
"value": "800",
"label": "t:settings_schema.typography.settings.font_weight.options__5"
},
{
"value": "900",
"label": "t:settings_schema.typography.settings.font_weight.options__6"
}]
},
{
"type": "select",
"id": "lv_2_text_transform",
"label": "t:settings_schema.typography.settings.text_transform.label",
"default": "capitalize",
"options": [
{
"value": "normal",
"label": "t:settings_schema.typography.settings.text_transform.options__1"
},
{
"value": "capitalize",
"label": "t:settings_schema.typography.settings.text_transform.options__2"
},
{
"value": "uppercase",
"label": "t:settings_schema.typography.settings.text_transform.options__3"
},
{
"value": "lowercase",
"label": "t:settings_schema.typography.settings.text_transform.options__4"
}]
},
{
"type": "paragraph",
"content": "t:sections.header.settings.menu_lv_2.paragraph__1.content"
},
{
"type": "select",
"id": "lv_2_mega_font",
"label": "t:settings_schema.typography.settings.font.label",
"options": [
{
"value": "font_1",
"label": "t:settings_schema.typography.settings.font.options__1"
},
{
"value": "font_2",
"label": "t:settings_schema.typography.settings.font.options__2"
},
{
"value": "font_3",
"label": "t:settings_schema.typography.settings.font.options__3"
}],
"default": "font_1"
},
{
"type": "range",
"id": "lv_2_mega_font_size",
"label": "t:settings_schema.typography.settings.font_size.label",
"min": 10,
"max": 30,
"step": 1,
"unit": "t:settings_schema.typography.settings.font_size.unit",
"default": 18
},
{
"type": "select",
"id": "lv_2_mega_font_weight",
"label": "t:settings_schema.typography.settings.font_weight.label",
"default": "900",
"options": [
{
"value": "400",
"label": "t:settings_schema.typography.settings.font_weight.options__1"
},
{
"value": "500",
"label": "t:settings_schema.typography.settings.font_weight.options__2"
},
{
"value": "600",
"label": "t:settings_schema.typography.settings.font_weight.options__3"
},
{
"value": "700",
"label": "t:settings_schema.typography.settings.font_weight.options__4"
},
{
"value": "800",
"label": "t:settings_schema.typography.settings.font_weight.options__5"
},
{
"value": "900",
"label": "t:settings_schema.typography.settings.font_weight.options__6"
}]
},
{
"type": "select",
"id": "lv_2_mega_text_transform",
"label": "t:settings_schema.typography.settings.text_transform.label",
"default": "uppercase",
"options": [
{
"value": "normal",
"label": "t:settings_schema.typography.settings.text_transform.options__1"
},
{
"value": "capitalize",
"label": "t:settings_schema.typography.settings.text_transform.options__2"
},
{
"value": "uppercase",
"label": "t:settings_schema.typography.settings.text_transform.options__3"
},
{
"value": "lowercase",
"label": "t:settings_schema.typography.settings.text_transform.options__4"
}]
},
{
"type": "paragraph",
"content": "t:sections.general.settings.color.paragraph__1.content"
},
{
"type": "color_background",
"id": "lv_2_bg",
"label": "t:sections.general.settings.color.label__10",
"default": "#FFFFFF"
},
{
"type": "color",
"id": "lv_2_color",
"label": "t:sections.general.settings.color.label__2",
"default": "#000000"
},
{
"type": "paragraph",
"content": "t:sections.general.settings.color.paragraph__2.content"
},
{
"type": "color",
"id": "lv_2_color_hover",
"label": "t:sections.general.settings.color.label__2",
"default": "#000000"
},
{
"type": "paragraph",
"content": "t:sections.general.settings.color.paragraph__3.content"
},
{
"type": "color",
"id": "lv_2_color_mobile",
"label": "t:sections.general.settings.color.label__2",
"default": "#000000"
},
{
"type": "header",
"content": "t:sections.header.settings.header__10.content"
},
{
"type": "textarea",
"id": "sale_item_1",
"label": "t:sections.header.settings.sale_item.label__1"
},
{
"type": "textarea",
"id": "sale_item_2",
"label": "t:sections.header.settings.sale_item.label__2"
},
{
"type": "textarea",
"id": "sale_item_3",
"label": "t:sections.header.settings.sale_item.label__3"
},
{
"type": "color",
"id": "sale_item_color",
"label": "t:sections.general.settings.color.label__2",
"default": "#D12442"
},
{
"type": "header",
"content": "t:sections.header.settings.header__11.content"
},
{
"type": "checkbox",
"id": "show_label",
"label": "t:sections.header.settings.menu_label.label__1",
"default": true
},
{
"type": "checkbox",
"id": "show_label_blink",
"label": "t:sections.header.settings.menu_label.label__5",
"info": "t:sections.header.settings.menu_label.info",
"default": false
},
{
"type": "paragraph",
"content": "t:sections.header.settings.menu_label.paragraph__1.content"
},
{
"type": "textarea",
"id": "new_label_1",
"label": "t:sections.header.settings.menu_label.label__2"
},
{
"type": "textarea",
"id": "new_label_2",
"label": "t:sections.header.settings.menu_label.label__3"
},
{
"type": "textarea",
"id": "new_label_3",
"label": "t:sections.header.settings.menu_label.label__4"
},
{
"type": "color_background",
"id": "new_label_bg",
"label": "t:sections.general.settings.color.label__1",
"default": "#BAE4ED"
},
{
"type": "color",
"id": "new_label_color",
"label": "t:sections.general.settings.color.label__2",
"default": "#FFFFFF"
},
{
"type": "paragraph",
"content": "t:sections.header.settings.menu_label.paragraph__2.content"
},
{
"type": "textarea",
"id": "sale_label_1",
"label": "t:sections.header.settings.menu_label.label__2"
},
{
"type": "textarea",
"id": "sale_label_2",
"label": "t:sections.header.settings.menu_label.label__3"
},
{
"type": "textarea",
"id": "sale_label_3",
"label": "t:sections.header.settings.menu_label.label__4"
},
{
"type": "color_background",
"id": "sale_label_bg",
"label": "t:sections.general.settings.color.label__1",
"default": "#D12442"
},
{
"type": "color",
"id": "sale_label_color",
"label": "t:sections.general.settings.color.label__2",
"default": "#FFFFFF"
},
{
"type": "paragraph",
"content": "t:sections.header.settings.menu_label.paragraph__3.content"
},
{
"type": "textarea",
"id": "hot_label_1",
"label": "t:sections.header.settings.menu_label.label__2"
},
{
"type": "textarea",
"id": "hot_label_2",
"label": "t:sections.header.settings.menu_label.label__3"
},
{
"type": "textarea",
"id": "hot_label_3",
"label": "t:sections.header.settings.menu_label.label__4"
},
{
"type": "color_background",
"id": "hot_label_bg",
"label": "t:sections.general.settings.color.label__1",
"default": "#FFF993"
},
{
"type": "color",
"id": "hot_label_color",
"label": "t:sections.general.settings.color.label__2",
"default": "#FFFFFF"
},
{
"type": "header",
"content": "t:sections.header.settings.header__12.content"
},
{
"type": "checkbox",
"id": "customer_service",
"label": "t:sections.header.settings.customer_service.label__1",
"default": true
},
{
"type": "textarea",
"id": "customer_service_icon",
"label": "t:sections.header.settings.customer_service.label__2"
},
{
"type": "textarea",
"id": "customer_service_text",
"label": "t:sections.header.settings.customer_service.label__3",
"default": "Call us (018) 900-6690 or **Live Chat**"
},
{
"type": "header",
"content": "t:sections.header.settings.header__16.content"
},
{
"type": "color_background",
"id": "cart_count_background",
"label": "t:sections.general.settings.color.label__1",
"default": "#BC1B3B"
},
{
"type": "color",
"id": "cart_count_color",
"label": "t:sections.general.settings.color.label__2",
"default": "#FFFFFF"
}
],
"blocks": [
{
"type": "tab",
"name": "t:sections.header.blocks.tab.name",
"settings": [
{
"type": "header",
"content": "t:sections.header.blocks.tab.settings.header__1.content"
},
{
"type": "image_picker",
"id": "logo",
"label": "t:sections.header.blocks.tab.settings.logo.label__1"
},
{
"type": "image_picker",
"id": "logo_mobile",
"label": "t:sections.header.blocks.tab.settings.logo.label__2"
},
{
"type": "textarea",
"id": "logo_text",
"label": "t:sections.header.blocks.tab.settings.logo.label__3"
},
{
"type": "textarea",
"id": "logo_icon",
"label": "t:sections.header.blocks.tab.settings.logo.label__4"
},
{
"type": "header",
"content": "t:sections.header.blocks.tab.settings.header__2.content"
},
{
"type": "text",
"id": "menu",
"label": "t:sections.header.blocks.tab.settings.menu.label__1"
},
{
"type": "page",
"id": "link",
"label": "t:sections.header.blocks.tab.settings.menu.label__2"
},
{
"type": "color_background",
"id": "text_bg",
"label": "t:sections.general.settings.color.label__1"
},
{
"type": "color",
"id": "text_color",
"label": "t:sections.general.settings.color.label__2"
}
]
},
{
"type": "megamenu",
"name": "t:sections.header.blocks.mega.name",
"settings": [
{
"type": "header",
"content": "t:sections.header.blocks.mega.settings.header__1.content"
},
{
"type": "text",
"id": "item",
"label": "t:sections.header.blocks.mega.settings.general.label__1",
"default": "Catalog"
},
{
"type": "header",
"content": "t:sections.header.blocks.mega.settings.header__2.content"
},
{
"type": "range",
"id": "column",
"label": "t:sections.header.blocks.mega.settings.column.label__1",
"min": 2,
"max": 6,
"step": 1,
"default": 5
},
{
"type": "header",
"content": "t:sections.header.blocks.mega.settings.header__3.content"
},
{
"type": "checkbox",
"id": "show_custom_text",
"label": "t:sections.header.blocks.mega.settings.custom-text.label__1",
"default": true
},
{
"type": "text",
"id": "custom_text_title",
"label": "t:sections.header.blocks.mega.settings.custom-text.label__2",
"default": "Offers"
},
{
"type": "textarea",
"id": "custom_text_text",
"label": "t:sections.header.blocks.mega.settings.custom-text.label__3"
},
{
"type": "text",
"id": "custom_text_link_text",
"label": "t:sections.header.blocks.mega.settings.custom-text.label__4",
"default": "See more offers"
},
{
"type": "url",
"id": "custom_text_url",
"label": "t:sections.header.blocks.mega.settings.custom-text.label__5"
},
{
"type": "header",
"content": "t:sections.header.blocks.mega.settings.header__4.content"
},
{
"type": "checkbox",
"id": "show_banner",
"label": "t:sections.header.blocks.mega.settings.banner.label__1",
"default": false
},
{
"type": "paragraph",
"content": "t:sections.header.blocks.mega.settings.banner.paragraph__1.content"
},
{
"type": "text",
"id": "banner_width",
"label": "t:sections.header.blocks.mega.settings.banner.label__2",
"info": "t:sections.header.blocks.mega.settings.banner.info"
},
{
"type": "checkbox",
"id": "show_banner_1",
"label": "t:sections.header.blocks.mega.settings.banner.label__3"
},
{
"type": "image_picker",
"id": "banner_1",
"label": "t:sections.header.blocks.mega.settings.banner.label__4"
},
{
"type": "text",
"id": "banner_title_1",
"label": "t:sections.header.blocks.mega.settings.banner.label__5"
},
{
"type": "text",
"id": "banner_text_1",
"label": "t:sections.header.blocks.mega.settings.banner.label__6"
},
{
"type": "url",
"id": "banner_url_1",
"label": "t:sections.header.blocks.mega.settings.banner.label__7"
},
{
"type": "paragraph",
"content": "t:sections.header.blocks.mega.settings.banner.paragraph__2.content"
},
{
"type": "checkbox",
"id": "show_banner_2",
"label": "t:sections.header.blocks.mega.settings.banner.label__3"
},
{
"type": "image_picker",
"id": "banner_2",
"label": "t:sections.header.blocks.mega.settings.banner.label__4"
},
{
"type": "text",
"id": "banner_title_2",
"label": "t:sections.header.blocks.mega.settings.banner.label__5"
},
{
"type": "text",
"id": "banner_text_2",
"label": "t:sections.header.blocks.mega.settings.banner.label__6"
},
{
"type": "url",
"id": "banner_url_2",
"label": "t:sections.header.blocks.mega.settings.banner.label__7"
},
{
"type": "paragraph",
"content": "t:sections.header.blocks.mega.settings.banner.paragraph__3.content"
},
{
"type": "checkbox",
"id": "show_banner_3",
"label": "t:sections.header.blocks.mega.settings.banner.label__3"
},
{
"type": "image_picker",
"id": "banner_3",
"label": "t:sections.header.blocks.mega.settings.banner.label__4"
},
{
"type": "text",
"id": "banner_title_3",
"label": "t:sections.header.blocks.mega.settings.banner.label__5"
},
{
"type": "text",
"id": "banner_text_3",
"label": "t:sections.header.blocks.mega.settings.banner.label__6"
},
{
"type": "url",
"id": "banner_url_3",
"label": "t:sections.header.blocks.mega.settings.banner.label__7"
},
{
"type": "paragraph",
"content": "t:sections.header.blocks.mega.settings.banner.paragraph__4.content"
},
{
"type": "checkbox",
"id": "show_banner_4",
"label": "t:sections.header.blocks.mega.settings.banner.label__3"
},
{
"type": "image_picker",
"id": "banner_4",
"label": "t:sections.header.blocks.mega.settings.banner.label__4"
},
{
"type": "text",
"id": "banner_title_4",
"label": "t:sections.header.blocks.mega.settings.banner.label__5"
},
{
"type": "text",
"id": "banner_text_4",
"label": "t:sections.header.blocks.mega.settings.banner.label__6"
},
{
"type": "url",
"id": "banner_url_4",
"label": "t:sections.header.blocks.mega.settings.banner.label__7"
},
{
"type": "paragraph",
"content": "t:sections.general.settings.typography.paragraph__1.content"
},
{
"type": "select",
"id": "heading_font",
"label": "t:settings_schema.typography.settings.font.label",
"options": [
{
"value": "font_1",
"label": "t:settings_schema.typography.settings.font.options__1"
},
{
"value": "font_2",
"label": "t:settings_schema.typography.settings.font.options__2"
},
{
"value": "font_3",
"label": "t:settings_schema.typography.settings.font.options__3"
}],
"default": "font_1"
},
{
"type": "range",
"id": "heading_font_size",
"label": "t:settings_schema.typography.settings.font_size.label",
"min": 10,
"max": 30,
"step": 1,
"unit": "t:settings_schema.typography.settings.font_size.unit",
"default": 15
},
{
"type": "select",
"id": "heading_font_weight",
"label": "t:settings_schema.typography.settings.font_weight.label",
"default": "900",
"options": [
{
"value": "400",
"label": "t:settings_schema.typography.settings.font_weight.options__1"
},
{
"value": "500",
"label": "t:settings_schema.typography.settings.font_weight.options__2"
},
{
"value": "600",
"label": "t:settings_schema.typography.settings.font_weight.options__3"
},
{
"value": "700",
"label": "t:settings_schema.typography.settings.font_weight.options__4"
},
{
"value": "800",
"label": "t:settings_schema.typography.settings.font_weight.options__5"
},
{
"value": "900",
"label": "t:settings_schema.typography.settings.font_weight.options__6"
}]
},
{
"type": "select",
"id": "heading_text_transform",
"label": "t:settings_schema.typography.settings.text_transform.label",
"default": "uppercase",
"options": [
{
"value": "none",
"label": "t:settings_schema.typography.settings.text_transform.options__1"
},
{
"value": "capitalize",
"label": "t:settings_schema.typography.settings.text_transform.options__2"
},
{
"value": "uppercase",
"label": "t:settings_schema.typography.settings.text_transform.options__3"
},
{
"value": "lowercase",
"label": "t:settings_schema.typography.settings.text_transform.options__4"
}]
},
{
"id": "heading_color",
"type": "color",
"label": "t:sections.general.settings.color.label__7",
"default": "#000000"
},
{
"type": "paragraph",
"content": "t:sections.general.settings.typography.paragraph__2.content"
},
{
"type": "select",
"id": "link_font",
"label": "t:settings_schema.typography.settings.font.label",
"options": [
{
"value": "font_1",
"label": "t:settings_schema.typography.settings.font.options__1"
},
{
"value": "font_2",
"label": "t:settings_schema.typography.settings.font.options__2"
},
{
"value": "font_3",
"label": "t:settings_schema.typography.settings.font.options__3"
}],
"default": "font_1"
},
{
"type": "range",
"id": "link_font_size",
"label": "t:settings_schema.typography.settings.font_size.label",
"min": 10,
"max": 20,
"step": 1,
"unit": "t:settings_schema.typography.settings.font_size.unit",
"default": 15
},
{
"type": "select",
"id": "link_font_weight",
"label": "t:settings_schema.typography.settings.font_weight.label",
"default": "400",
"options": [
{
"value": "400",
"label": "t:settings_schema.typography.settings.font_weight.options__1"
},
{
"value": "500",
"label": "t:settings_schema.typography.settings.font_weight.options__2"
},
{
"value": "600",
"label": "t:settings_schema.typography.settings.font_weight.options__3"
},
{
"value": "700",
"label": "t:settings_schema.typography.settings.font_weight.options__4"
},
{
"value": "800",
"label": "t:settings_schema.typography.settings.font_weight.options__5"
},
{
"value": "900",
"label": "t:settings_schema.typography.settings.font_weight.options__6"
}]
},
{
"type": "select",
"id": "link_text_transform",
"label": "t:settings_schema.typography.settings.text_transform.label",
"default": "capitalize",
"options": [
{
"value": "none",
"label": "t:settings_schema.typography.settings.text_transform.options__1"
},
{
"value": "capitalize",
"label": "t:settings_schema.typography.settings.text_transform.options__2"
},
{
"value": "uppercase",
"label": "t:settings_schema.typography.settings.text_transform.options__3"
},
{
"value": "lowercase",
"label": "t:settings_schema.typography.settings.text_transform.options__4"
}]
},
{
"id": "link_color",
"type": "color",
"label": "t:sections.general.settings.color.label__2",
"default": "#000000"
},
{
"type": "header",
"content": "t:sections.header.blocks.mega.settings.header__5.content"
},
{
"type": "checkbox",
"id": "show_az_brand",
"label": "t:sections.header.blocks.mega.settings.azbrands.label__1",
"default": false
},
{
"type": "text",
"id": "az_brand_title",
"label": "t:sections.header.blocks.mega.settings.azbrands.label__2",
"default" : "All Brands A-Z"
},
{
"type": "text",
"id": "az_brand_link_text",
"label": "t:sections.header.blocks.mega.settings.azbrands.label__3",
"default" : "See All Brands"
},
{
"type": "url",
"id": "az_brand_url",
"label": "t:sections.header.blocks.mega.settings.azbrands.label__4"
},
{
"type": "header",
"content": "t:sections.header.blocks.mega.settings.header__6.content"
},
{
"type": "checkbox",
"id": "show_product",
"label": "t:sections.header.blocks.mega.settings.product_block.label__1",
"default": false
},
{
"type": "text",
"id": "product_title",
"label": "t:sections.header.blocks.mega.settings.product_block.label__2",
"default" : "On Sale Products"
},
{
"type": "collection",
"id": "product_collection",
"label": "t:sections.header.blocks.mega.settings.product_block.label__3"
},
{
"type": "range",
"id": "product_limit",
"label": "t:sections.header.blocks.mega.settings.product_block.label__4",
"min": 3,
"max": 10,
"step": 1,
"default": 6
},
{
"type": "select",
"id": "product_per_row",
"label": "t:sections.header.blocks.mega.settings.product_block.label__5",
"options": [
{
"value": "3",
"label": "3"
},
{
"value": "4",
"label": "4"
},
{
"value": "5",
"label": "5"
}],
"default": "5"
}
]
}
]
}
{% endschema %}