Solved

I want to remove placeholder/color background from my product images

Stephen211
Shopify Partner
59 1 12

Screenshot 2021-08-04 042623.png

I do not like how my images are displaying and would like to have the color borders removed. please help!

 

getrichinpeace.com

pw : chieta

Accepted Solution (1)

dmwwebartisan
Shopify Partner
12289 2547 3698

This is an accepted solution.

@Stephen211 

please Go to Online Store->Theme->Edit code then go to assets/styles.scss.liquid ->paste below code at the bottom of the file.

.image-element__wrap {
    background: transparent !important;
}

Thanks!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app

View solution in original post

Replies 4 (4)

Hardik29418
Shopify Partner
2913 419 1084

@Stephen211 Please Go to Online Store -> Themes -> Edit code -> Assets -> theme.scss.liquid and paste this code at the end of this file.

.product-list .thumbnail img, .slider-gallery .thumbnail img, .list-collections .thumbnail img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

 

- Need a Shopify developer? Chat on WhatsApp or EMAIL ME!


- Your Coffee Tip would do Magic code ❤️
- For Shopify Design Changes | Shopify Custom Coding | Custom Modifications
- Email
Stephen211
Shopify Partner
59 1 12

yea, thanks. but i do not have that section theme.scss.liquid in my code file. this is all i've got under Assets.Screenshot 2021-08-04 051848.png

dmwwebartisan
Shopify Partner
12289 2547 3698

This is an accepted solution.

@Stephen211 

please Go to Online Store->Theme->Edit code then go to assets/styles.scss.liquid ->paste below code at the bottom of the file.

.image-element__wrap {
    background: transparent !important;
}

Thanks!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
Stephen211
Shopify Partner
59 1 12

oh wow! thank you @dmwwebartisan . It worked!