How can I delete the gray line under my Venue theme shopping cart button?

How can I remove the grey line under the pink ‘shopping cart’ button? I would like the text to start closer to the pink button. I use the Venue theme. Thanks a lot!

2 Likes

Try adding this code to the bottom of theme.css

.product-single--minimal .product-single__content-text{
  border-top: 0;
  padding-top: 20px;
}

@CvanHoof

Please provide your store URL.

@CvanHoof

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

1 Like

Unfortunately, that didn’t work but thanks anyway!

https://272hjwzvz1331bsx-57195561144.shopifypreview.com

Hi @KetanKumar

Thanks for your message. My shop isn’t live yet but here is a preview link https://272hjwzvz1331bsx-57195561144.shopifypreview.com

1 Like

@CvanHoof

thanks for URL can you please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
.product-single--minimal .product-single__price {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.product-single--minimal .product-single__content-text {
    border-top: none;
    padding-top: 0;
}
2 Likes

This works!! Thank you so much!

1 Like