I’m looking to remove the phone number pill from the contact form on mobile and desktop on dawn theme
Add this code in edit code > base.css and add this code at the end of the file
.contact form#ContactForm .contact__fields + .field {
display: none;
}
Hello @undercoverfresh ,
Here are the steps to apply the necessary changes in your Shopify store:
- In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
- Locate Asset > base.css and paste the following code at the bottom of the file:
.field:nth-child(4) {
display: none !important;
}
Let me know if you need further assistance!
It works as well if you put it in the custom CSS for that section (Customiser->Pages->Contact) which avoids having to edit code.


