How can I eliminate box shadow in Makerlab Electronics?

url:

enable cart instructions

Try the following CSS in a custom-css setting

https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css

cart-note .text-area.field__input:focus {
 box-shadow: none;
}
cart-note .text-area.field__input:focus:after {
 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), 1)
}

Tailor to need.

Keep in mind that :focus style is there for accessibility.

If your remove this another visual indicator of usage should be used , that’s what the second style is for.

Hello @niceeee ,

You can try to follow these steps:

  • Go to Online Store → Themes → Actions → Edit code
  • Go to Assets folder → base.css file → add this following code at the bottom of page
.order-special-instructions__input {
  box-shadow: none;
}
  • Save and preview

Hope this can help you out. Let us know if you need any further support

Ali Reviews team.