I want to remove ‘phone number’ from my contact form. site: winandgetrich.com (no code needed) Can someone help me?
Topic summary
A user sought help removing the phone number field from their contact form on winandgetrich.com without coding knowledge.
Solution Provided:
- Navigate to Online Store → Theme → Edit code
- Open Asset → base.css
- Add CSS code at the bottom targeting the 4th child element of the contact form to hide it using
display: none !important
Outcome:
The solution was confirmed successful by the original poster, who reported it worked perfectly. The issue appears resolved through this CSS-based approach.
Hi @winandgetrich ,
This is Victor from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/base.css->paste below code at the bottom of the file:
form#ContactForm > div:nth-child(4) {
display: none !important;
}
Hope my answer will help you.
Best regards,
Victor | PageFly
1 Like
Thank you so much! Worked perfectly!
