Remove border around input fields

Solved

Remove border around input fields

Danish864
Shopify Partner
38 3 7

Hi. I want to remove border from my input fields. I want only bottom line . i have tried some css but when i click in the input field border again comes. can you please help me with this?

Danish864_0-1725089033794.png


Also can you please remove placeholder also when i click in it.
I want it to look like this simple.

Danish864_1-1725089385222.png

Website Url: https://cozo-store.myshopify.com/pages/contact
Password: cozo

 

Accepted Solutions (2)

Moeed
Shopify Partner
4917 1297 1572

This is an accepted solution.

Hey @Danish864 

 

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 </body> tag

<style>
.field__input {
    box-shadow: unset !important;
}
</style>

RESULT:

Moeed_0-1725090123509.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

View solution in original post

niraj_patel
Shopify Partner
2378 514 511

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
  .contact .field__input:focus{
      box-shadow: unset !important;
   }
</style>

niraj_patel_0-1725090107597.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

View solution in original post

Replies 6 (6)

niraj_patel
Shopify Partner
2378 514 511

Hello @Danish864 
would you like to share your store URL and password if any please.
so i can check and provide you possible solution for your question.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
Danish864
Shopify Partner
38 3 7

i have updated the post with website url and password. Thank you

niraj_patel
Shopify Partner
2378 514 511

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
  .contact .field__input:focus{
      box-shadow: unset !important;
   }
</style>

niraj_patel_0-1725090107597.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

Moeed
Shopify Partner
4917 1297 1572

This is an accepted solution.

Hey @Danish864 

 

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 </body> tag

<style>
.field__input {
    box-shadow: unset !important;
}
</style>

RESULT:

Moeed_0-1725090123509.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
Danish864
Shopify Partner
38 3 7

when you click into the input field. borders will come again.

Moeed
Shopify Partner
4917 1297 1572

I have updated my reply, check it again.

 

Best Regards,

Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️