I want to remove the border on quick add button - Dawn theme


I want to remove the button border line on quick add button in my store

website link: https://mxc71fbmuklt43xr-93050175853.shopifypreview.com
password: amber

2 Likes

Hello @Sivadarshan ,

Here are the steps to apply the necessary changes in your Shopify store:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
  2. Locate Asset > base.css and paste the following code at the bottom of the file:
button.quick-add__submit:after {
    box-shadow: none !important;
}

Let me know if you need further assistance!

Hi,

Hope this will help

  • At CSS file like Assets > base.css or Assets > component-button.css, Add Custom CSS

CSS example

.quick-add__submit {
  border: none !important;
  box-shadow: none !important;
}