Re: Consistency with White Space

Solved

Consistency with White Space

thatshampooshop
Excursionist
26 0 3

Hi there, 

 

Can anyone advise on how to keep the white space consistent for all types of screens? 

 

Store link: https://ee15bf-83.myshopify.com/products/wella-professionals-6-welloxon-perfect-20-volume-developer?... 

 

Monitor:

thatshampooshop_0-1721016159047.png

 

Laptop:

thatshampooshop_1-1721016195080.png

 

Thanks!

 

Accepted Solution (1)

Kyle_liu
Shopify Partner
164 23 27

This is an accepted solution.

Hi @thatshampooshop 

You can edit the question piece section-main-product.css on line 1333

 

  .product-media-container.constrain-height {
    --viewport-offset: 170px;
    --constrained-min-height: 500px;
  }

to

  .product-media-container.constrain-height {
    --viewport-offset: 170px;
    --constrained-min-height: 100%;
  }

 

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to contact me on (liushuaicc@shinetechsoftware.com)

View solution in original post

Replies 2 (2)

Liquid_xPert_SJ
Shopify Partner
1175 130 167

@thatshampooshop 

can you please put below code into your theme file called base.css file

.product:not(.product--columns) .product__media-list .product__media-item .product-media-container {
	width: 100%;
	height: 100%;
	--constrained-min-height: 100% !important;
}

 

Online Store > Edit Code > Theme Files > Assets  Files > base.css

 

Thanks

- If you need any technical assistance, feel free to send me a DM. You no longer have to search for answers without getting a response.
- Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
- Your Shopify Solution Specialist For further discussion contact: Email ID- Liqud_3xPert_SJ OR Whatsapp
- Buy a Coffee for me to get more frequently help 🙂
- Hire Me to unlock the full potential of your e-commerce store Now 🙂- If you need any technical assistance, feel free to send me a DM. You no longer have to search for answers without getting a response.
- Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
- Your Shopify Solution Specialist For further discussion contact: Email ID- Liqud_3xPert_SJ OR Whatsapp
- Buy a Coffee for me to get more frequently help 🙂
- Hire Me to unlock the full potential of your e-commerce store Now 🙂

Kyle_liu
Shopify Partner
164 23 27

This is an accepted solution.

Hi @thatshampooshop 

You can edit the question piece section-main-product.css on line 1333

 

  .product-media-container.constrain-height {
    --viewport-offset: 170px;
    --constrained-min-height: 500px;
  }

to

  .product-media-container.constrain-height {
    --viewport-offset: 170px;
    --constrained-min-height: 100%;
  }

 

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to contact me on (liushuaicc@shinetechsoftware.com)