Craft theme - Set PNG photo transparent background to white

Solved

Craft theme - Set PNG photo transparent background to white

Karolisp
Excursionist
16 1 3

Hi,

 

Need to change the transparent background for product cards and main product photo to white.

 

Thanks for the help!

 

https://kosmetologegoda.myshopify.com/

Pass: shauyu

Accepted Solution (1)

Karolisp
Excursionist
16 1 3

This is an accepted solution.

Thanks for the answer, but it changes the color of the whole card and the whole product, so it doesn't work.

 

Actually found the answer it myself, so to whomever, it will be useful.

 

Edit code -> Base.css

 

.media--transparent {
background-color: #fff;

 

 

View solution in original post

Replies 2 (2)

gr_trading
Shopify Partner
2044 149 206

Hi @Karolisp ,

 

Use below script to make background to white in base.css.

 

For product card

 

.product-card-wrapper .card {
    background: #fff;
    border-radius: 0.6rem;
}

 

hari1_prasad_1-1664799029407.png

 

 

 

To enable for Product landing page

 

.product {
    background: #fff;
    border-radius: 0.625rem;
}

 

hari1_prasad_0-1664798992823.png

 

 

For any custom development WhatsApp or connect at Email ID: support@grtrading.in for quick consultation. | Shopify Free codes
To support Buy Me a Coffee

Karolisp
Excursionist
16 1 3

This is an accepted solution.

Thanks for the answer, but it changes the color of the whole card and the whole product, so it doesn't work.

 

Actually found the answer it myself, so to whomever, it will be useful.

 

Edit code -> Base.css

 

.media--transparent {
background-color: #fff;