How do I remove the phone number option on the contact form?

I dont want people to put their phone number in when they contact us only their email, name, and comment.

Hi @jaelahstanley , to do that, please follow our instructions:

Step 1: Open Online Store → Themes → Edit code.

Step 2: Find base.css file.

Step 3: Paste this code at the bottom of the file

#ContactForm-phone {
 display: none !important;
}

If this helpful, please let us know by giving us a like and marking its as a solution. Thanks you :heart_eyes:

Hi @jaelahstanley

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file component-newsletter.css and add this code at the end of the file

.field:nth-child(4) {
    display: none !important;
}

Result:

Best,

Liz

Thank you!