Re: How to fix the blurry product images?

How to fix the blurry product images?

empiricalarby
Trailblazer
230 1 51

My product images, the ones contained in the carousel on the product pages, seem to be at least a little blurry on all my platforms. How do I make it more crisp? Also on mobile, how do I set the horizontal border for the images to zero?

 

https://empiricalwater.com/collections/all

Dawn theme

Replies 7 (7)

Small_Task_Help
Shopify Partner
830 27 75

Hi,

 

Hope this will help

 

Use High-Resolution Images
Check Image Compression
Adjust image size settings
Use CSS media queries
Update your theme's CSS file accordingly

To Get Shopify Experts Help, E-mail - [email protected]
About Us - We are Shopify Expert Agency
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad

BSS-TekLabs
Shopify Partner
2350 702 827

Hi @empiricalarby,

Here are the steps you can follow:

1, Navigate to Online Store > Themes > Edit Code.

2, Locate and open the base.css (or theme.css, custom.css) file.

3, Paste the code snippet provided below at the bottom of the file, then save your changes.

@media screen and (max-width: 749px) {
  .slider.slider--mobile.product__media-list {
    gap: 0;
  }

  .slider.slider--mobile.product__media-list li.product__media-item {
    width: 100%;
  }
}

Here is the result

BSSTekLabs_0-1722343305375.png

We hope this assists in resolving the issue.

If you find our solution helpful, kindly consider Liking and Marking it as Accepted. Thank you!

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
empiricalarby
Trailblazer
230 1 51

Thanks, I appreciate the effort however I didn't notice any change on my end. The code is currently applied to the end of base.css.

BSS-TekLabs
Shopify Partner
2350 702 827

Hi @empiricalarby,

I've checked your store and there's a special character above the code. Please review and remove it.

BSSTekLabs_0-1722430308510.png

To this

BSSTekLabs_1-1722430326875.png

We hope this assists in resolving the issue.

If you find our solution helpful, kindly consider Liking and Marking it as Accepted. Thank you!

 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
empiricalarby
Trailblazer
230 1 51

Are you referring to that red dot?

BSS-TekLabs
Shopify Partner
2350 702 827

Or you can follow this instruction:

Here are the steps you can follow:

1, Navigate to Online Store > Themes > Edit Code.

2, Locate and open the theme.liquid file.

3, Paste the code snippet provided below right before the closing head tag, then save your changes.

<style>
@media screen and (max-width: 749px) {
  .slider.slider--mobile.product__media-list {
    gap: 0;
  }

  .slider.slider--mobile.product__media-list li.product__media-item {
    width: 100%;
  }
}
</style>

edit-theme.liquid-tutorial.png

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
empiricalarby
Trailblazer
230 1 51

It seems this made the image correct size but it is offset to the right, so I see white border at left on mobile.