Remove Background Of Image - Only Leave The Chosen Shape - Dawn Theme

Solved

Remove Background Of Image - Only Leave The Chosen Shape - Dawn Theme

Kelly-D
Tourist
5 0 1

Hi there,

 

I am hoping someone can help me please.

 

I would like to remove the background of the product images so that it is only the shape that is chosen in the customiser left.

 

So in this case it would be the arch. 

 

What would be the best way to go about this?

 

Thanks in advance!

 

6FF53F12-24E4-42C0-9468-F507892F07B7.jpeg

 

Accepted Solution (1)
LizHoang
Shopify Partner
1251 159 196

This is an accepted solution.

Hi Kelly-D

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

 

.card__inner {
    background: none !important;
}

 

Result: 

LizHoang_0-1738893608475.png

 

Best,
Liz

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program

View solution in original post

Replies 8 (8)

LizHoang
Shopify Partner
1251 159 196

Hi, Can you share store URL?

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program
Kelly-D
Tourist
5 0 1

Hi there,

 

Yep sure!

 

https://inkspiredavenue.com

password: 123

LizHoang
Shopify Partner
1251 159 196

This is an accepted solution.

Hi Kelly-D

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

 

.card__inner {
    background: none !important;
}

 

Result: 

LizHoang_0-1738893608475.png

 

Best,
Liz

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program
Kelly-D
Tourist
5 0 1

Amazing! Thank you so much!

 

DaisyVo
Shopify Partner
4338 481 568

Hi @Kelly-D 

 

I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Edit code: https://prnt.sc/M4p-gua99Uf4
2/ Search for "theme.liquid" file: https://prnt.sc/b6xveIKe-Rh2
3/ Open the file and search for </head> tag and add the following code above </head> tag: https://prnt.sc/KWtKYyZkDtYJ

 

Here is the code for Step 3:

 

 

{% style %}
.card__inner {
    background: transparent !important;
}
{% endstyle %}

 

 

DaisyVo_0-1738893329566.png

 

Please let me know if it works. Thank you!

Best,
Daisy - Avada Support Team.

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
Kelly-D
Tourist
5 0 1

Thank you so much for your reply!

B2Bridge
Excursionist
334 67 82

Hi @Kelly-D , you can try this code by following these steps: 

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Insert this code above </head> tag

 

<style>
.card__inner, .card__media {
    background: none !important;
}
</style>

 

Hope this can help you,

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

B2Bridge: All-in-one B2B wholesale solution, enabling merchants to set up a complete B2B store quickly and without coding.
With features like customizable registration forms, customer segmentation, and tailored price lists, it simplifies wholesale management.
B2Bridge also includes a dedicated Quick Order page and flexible Net Payment Terms, streamlining operations for wholesalers and enhancing the buying experience.

Kelly-D
Tourist
5 0 1

Thank you so much for your reply!