Need cart checkout button border outline removal

Hi, I have done the coding for the cart checkout button to make it look how I want, but there is still a black border box around the button that I don’t know how to remove. Would love you if you could tell me how to get this fixed.

Hi @9INE

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
button#CartDrawer-Checkout:after {
    box-shadow: none !important;
}

Thank you! You are a savior

It’s happening too with my frequently added together app, the same black box is appearing. Do you know how to fix this one?

Try this one same instruction.

#MainProduct-template--20732448964881__main > div.cbb-frequently-bought-container.cbb-desktop-view .button:after {
    box-shadow: none !important;
}

And Save.

Result:

Thank you :heart:

Hi I just noticed that the fix for frequently bought together only worked for desktop. How do I make it work for mobile as well?