Hello everyone! I am modifying the “contact us” form and I can’t really understand how to edit the placement of the form and its components.
Basically, I just want to center the “Contact Us” text and the “Send” button, which should also be capitalised, e.g. “SEND”.
And the small letter in the “Phone number” really deteriorates the sleek design. I really want to make it look like “Phone Number”.
How can I possibly edit these moments? Thank you very much in advance!!
The website is https://project-avignon.myshopify.com/pages/contact
Password: meolyo.
Angel95
2
Hello,
Please add this in the base.css for the contact-us and the submit button.


Angel95
3
Hello.
For the change the font:
in the base.css file you need all the css so you will get as per your requirement
Guleria
4
Hello @d_reinicke ,
Add this css at the bottom of file base.css
.contact .title {
text-align: center;
}
.contact .contact__button {
text-align: center;
}
.contact .contact__button .button {
text-transform: uppercase;
}
.contact .field__label {
text-transform: capitalize;
}
Thanks
Thank you very much for your help, guys!
Both solutions are totally valid, though Guleria’s is a bit more ergonomic.