How can I eliminate the border from a search icon?

remove the border in search icon

Hey @niceeee

Follow these steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above

Add this code to your base.css

.search__input field__input:focus { box-shadow: none !important; }

Hi @niceeee

This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Base.css or theme.css

.search__input field__input:focus { 
    box-shadow: none !important; 
}

Hope you find my answer helpful!

Best regards,

Victor | PageFly

still there

Hi @niceeee

I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.

Please add this css in your bottom of the base.css file:

.search__input.field__input {box-shadow: none !important;}

Regards,

San

My bad, please use this code

.search__input.field__input:focus { box-shadow: none !important; }