Bullet Theme - How do a remove a portion of the product border ?

Solved

Bullet Theme - How do a remove a portion of the product border ?

jonnynogood
New Member
4 0 0

Hey guys,

Im hoping you can help me. I have the bullet theme installed on website.

I am trying to remove the boarder between the image and the description/price of the product ?

(Between the grey on top and white on the bottom)

It will be for all product images on my website.

Screenshot 2024-05-09 at 2.26.03 pm.png

Thanks in advance 

Accepted Solution (1)
niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
 .product [card-type=base] .card-meta {
    border-top: unset !important;
 }
</style>

techlyser_web_0-1715234105378.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

View solution in original post

Replies 4 (4)

niraj_patel
Shopify Partner
2391 516 515

Hello @jonnynogood 
can you share store URL?

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
jonnynogood
New Member
4 0 0
niraj_patel
Shopify Partner
2391 516 515

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
 .product [card-type=base] .card-meta {
    border-top: unset !important;
 }
</style>

techlyser_web_0-1715234105378.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
jonnynogood
New Member
4 0 0

Awesome !!!