Recent Articles
Add legend in the product card
Find <fieldset class="variant-option variant-option--buttons variant-option--swatches"> in variant-swatches.liquid, Add the following before the above: <!-- ADD THIS LEGEND --> <div class="swatch-legend"> <span class="swatch-legend__option-name">{{ ...
Enable marquee in the header and footer
In marquee.liquid, change disabled to enabled. {% schema %} { "name": "t:names.marquee", "enabled_on": { "groups": ["header", "footer"] },
Make collection list carousel image smaller
In collection-list.liquid, add the followings: { "type": "select", "id": "mobile_columns", "label": "t:settings.mobile_columns", "options": [ { "value": "1", "label": "t:options.one_number" }, { "value": "2", "label": "t:options.two_number" }, { ...
Blog post setting - align left, and max width
In blog post customizer, add css: .blog-post-content { max-width: 100%; } h2 { font-size: 28px; } h3 { font-size: 22px; } .blog-post-content img { max-width: 350px; } .blog-post-comments-container { max-width: 100%; padding-top: 30px; } ...
Make SALE menu item red
In header, add customer css as below .header-menu a[href="/collections/sale"] { color: #ff0000 !important; font-weight: 700; } .header-menu a[href="/collections/sale"]:hover { color: black !important; font-weight: 700; }