Re: Remove featured product image border on mobile

Solved

Remove featured product image border on mobile

nmn22601
Tourist
12 0 3

On mobile the featured collection images have a white border around the product image.  How can I remove these?

 

https://q478a5ljt5g7ge1x-85805793561.shopifypreview.com/

Accepted Solution (1)

ThePrimeWeb
Shopify Partner
2138 615 501

This is an accepted solution.

Hey @nmn22601,

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

<style>
.card--standard .card__inner {
    border: none !important;
}
</style>

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1713484604131.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!

View solution in original post

Replies 4 (4)

ThePrimeWeb
Shopify Partner
2138 615 501

This is an accepted solution.

Hey @nmn22601,

 

Go to your theme's "Edit Code" Option, then in the search bar type "theme.liquid"
Below the tag "<head>" tag paste the following. Screenshot attached for reference.

<style>
.card--standard .card__inner {
    border: none !important;
}
</style>

 

Screenshot is for reference only, the correct code to paste is the one shown above.

ThePrimeWeb_0-1713484604131.jpeg

 

Was I helpful?

Buy me a coffee

🙂

Need help with your store? contact@theprimeweb.com or check out the website
Check out our interview with Shopify!
nmn22601
Tourist
12 0 3

Thank you that worked.  I was adding that code to the base.css.  How did you know to use the theme.liquid?

Anshul_arora
Navigator
453 128 96

Hello @nmn22601 ,

I understand you are looking to remove the featured product image border.

You can remove the border with the help of following steps -:

1. Go to Online Store -> Themes-> Edit Code https://prnt.sc/AD-DQ6ECUvcp

2. Open the theme.liquid file and paste the code at the bottom of the file before </body> tag

Anshul_arora_0-1713506627055.png

 

<style>

.card__inner.color-background-1.gradient.ratio {
border: none !important;
}

</style>


Output will be like this =>

Anshul_arora_1-1713506670336.png


I hope the solution helps you.

Please share if you have any query.

Thank you.

Please remember to like and accept the solution to help other store owners.

For Shopify Design & Development | Custom Coding -Visit Here

diego_ezfy
Shopify Partner
2969 571 909

@nmn22601@nmn22601, do this to fix it in 20 seconds:

1. In your Shopify Admin go to: online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:

.card--standard .card__inner {
    border-color: transparent !important;
}



If it helps you please click on the "like" button and mark this answer as a solution!

Thank you.

Kind regards,
Diego