Hi, I’m looking to increase and center the font size on my products. Thank you!
Topic summary
A user seeks to increase and center product font sizes on their Shopify store using the Craft theme.
Solutions provided:
- Option 1: Add custom CSS code to the
theme.liquidfile, placing it above the</body>tag - Option 2: Insert code at the bottom of
layout/theme.liquidbefore the closing body tag - Option 3: Modify
Base.cssby adding CSS targeting.card__informationfor center alignment and.card__headingfor font size (20px)
All three responses offer code-based solutions involving either the theme.liquid file or Base.css stylesheet. The original poster expressed gratitude, suggesting they found the assistance helpful.
Note: Some text in responses appears corrupted or reversed, but the core technical guidance remains clear—custom CSS modifications to theme files are needed to achieve the desired styling changes.
Hey @planandstick
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above tag
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Please add the following code to your layout/theme.liquid before the
Thanks!
tag bottom of file.@planandstick
Hello,
Add This CSS GO to Admin > Edit Code > Base.css
.card__information {
text-align-last: center;
}
.card__heading {
font-size: 20px;
}
thank you so much for your help!


