Solved

Reduce zoom size... image blurry

TBoan
Tourist
8 1 2

I am using the Crave theme. Zooming in on a product image makes it too big and thus blurry. How can I reduce the size?

Accepted Solution (1)

GabrielS
Shopify Partner
455 97 104

This is an accepted solution.

Hi,

 

The below code should achieve what you are looking for:

.product-media-modal__content {
  max-width: 700px !important;
  margin: 0 auto !important;
}

Adding the code at the end of your base.css file should look similar to the attached screenshot.

GabrielS_0-1664927234172.png

 

 

Cheers!

 

Gabriel Soare | Web Developer
Are you looking to customize your Shopify or to fix a website bug?
You can reach me through my website gabrielsoare.com, DM, or email hello@gabrielsoare.com.
Have I helped you? Like my post or empower me with a coffee.

View solution in original post

Replies 2 (2)

GabrielS
Shopify Partner
455 97 104

This is an accepted solution.

Hi,

 

The below code should achieve what you are looking for:

.product-media-modal__content {
  max-width: 700px !important;
  margin: 0 auto !important;
}

Adding the code at the end of your base.css file should look similar to the attached screenshot.

GabrielS_0-1664927234172.png

 

 

Cheers!

 

Gabriel Soare | Web Developer
Are you looking to customize your Shopify or to fix a website bug?
You can reach me through my website gabrielsoare.com, DM, or email hello@gabrielsoare.com.
Have I helped you? Like my post or empower me with a coffee.
TBoan
Tourist
8 1 2

Thank you, GabrielS.