FEATURED PRODUCTS SWATCHES ALIGNMENT

If your store showcases products where some have color or variant swatches and others don't, you might notice an inconsistency in the alignment of the 'Add to Cart' button. To ensure a uniform and professional look across all your product listings, please follow the steps below to align the 'Add to Cart' button consistently:

Open snippets/product-item.liquid in the code 

Find around line 144

 {% if swatches %}
Replace it with:

{% if swatches == nil %}
      <div style="height: 28px" class="mb-5"></div>
  {% else %}

end result:

Last updated