Version 2.8.2

This update was launched on the 27th of May 2021.

Fixes and improvements:

  • Added a new translation:
  • Added back the default titles for filter select boxes in collection pages.
    • To apply this fix yourself, edit /sections/header.liquid and search for this line:

      <option value="" class="default">--</option>
      		

      Replace it with:

      <option value="" disabled selected hidden style="display:none">{{ cat_item }}</option>
      <option value="">{{ 'sidebar.collection_filters.none_selected' | t }}</option>
      		
  • Fixed issue with some large blocks on iPads
    • To apply the fix yourself, paste the following code at the very end of /assets/theme.css:

      @media screen and (max-width: 1024px) and (orientation: portrait) {
        .reduce-top-margin {
          min-height: 0 !important;
        }
      }
      		
  • Fixed a weird issue with classical menu in Safari browsers and high speed scrolling.
    • To apply the fix yourself, paste the following code at the very end of /assets/theme.css:

      .site-header.desktop-view--classic {
        top: 0 !important;
        border-bottom: none !important;
        box-shadow: 0 1px 0 0 rgba(var(--color-background-third), 1);
      }
      		
  • Fixed the misaligned newsletter sign up button for mobile devices.
    • To apply the fix yourself, paste the following code at the very end of /assets/theme.css

      @media screen and (max-width: 480px){
       .box__newsletter .button {
          margin-top: 0 !important;
          height: 100%;
        }
      }
      		
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.