Version 2.7.3

This update was launched on the 3rd of March 2021. It fixes some small bugs: 

  • Blog post titles on mobile devices
  • Newsletter redirection issue
  • Product slider not sticky
  • Product variant selectors on mobile Safari

Fixing blog post titles on mobile devices

  1. Go to the theme editor (read this article for more info)
  2. Choose / assets/theme.css and right at the end of the file, paste the following snippet:

    .mount-article .box__heading .site-box-content {
      position: relative;
    }
    	
  3. Save file!

Fixing newsletter confirmation redirect

  1. Go to the theme editor (read this article for more info)
  2. Choose /layout/theme.liquid and right at the end of the file, BEFORE the ending body tag:

    Paste the following code:

    <script>
      if ( window.location.search == '?customer_posted=true' ) {
        setTimeout(function(){
          document.getElementById('contact_form').closest('.shopify-section').scrollIntoView();
        }, 500);
      }
    </script>
    	
  3. Save the file!

Fixing product slider & variants issues on mobile Safari

  1. Go to the theme editor (read this article for more info)
  2. Choose /assets/theme.css and right at the end of the file, paste the following snippet:

    .box__product-gallery.slider { 
      position: sticky; 
      top: 0;
    }
    .regular-select-cover select, .simple-select-cover select { 
      -webkit-appearance: none !important;
    }
    	
  3. Save file!
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.