A space to discuss online store customization, theme development, and Liquid templating.
I have been trying to remove the white background of the images to match the background color. I have researched some options (code) and none have seemed to work.
You can upload your image to this website which will remove the background from your image
Afterward you can replace the background with your original image
Additionally you can try making the background transparent using CSS
To make the background transparent using CSS you can apply the following code to your image or its container
.your-image-class {
background-color: transparent;
}