can someone tell me how to make all the text in the contact template bold? including the title. I would also want the title to be in the centre of the page.
Topic summary
Goal: Make all text in the Shopify contact template bold and center the title.
Proposed solution: Edit theme code (Online Store → Theme → Edit code) and add CSS in base.css to set the title and form labels to bold. The provided rules also targeted the Send button, making it bold and assigning a large font size (font-size: 3.5rem).
Result: Bold styling worked, but the Send button became too large.
Update/fix: Remove the button-specific CSS (particularly the font-size declaration, or the entire .contact__button button.button block) to restore the button to its normal size while keeping other bold text changes.
Notes: Screenshots were included to show where to add and what to remove in the CSS.
Status: Partial resolution. Bold text achieved; button size fix provided. The request to center the title was not addressed in the provided code, and no final confirmation was posted.
Hi @suoshie
This is Victor from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file → Save
h2.title.title-wrapper–no-top-margin.h1, .field__label, .customer .field label {
font-weight: bold !important;
}
.contact__button button.button {
font-weight: bold !important;
font-size: 3.5rem !important;
}
Hope that my solution works for you.
Best regards,
Victor | PageFly
hi it works but it made the “send” button very big, can you make it back to its normal size.
if you don’t want the “send” button to look so big you can delete this code in the code I sent above so it can display normally


