Hello friends, how can I change the typeface of this title? As example from Arial to Times New Roman?
Topic summary
A user needed help changing the font of a product title (shown in an attached screenshot) from Arial to Times New Roman.
Solution provided:
- Navigate to: Online Store → Themes → Edit Code
- Locate the CSS file (typically
theme.css,base.css, orstyles.cssin the Assets folder) - Add or modify the CSS rule for the title class:
.product__title {
font-family: "Times New Roman", Times, serif !important;
}
- Use
!importantif the font doesn’t change due to conflicting styles
Status: Resolved. The user confirmed the solution worked successfully.
Hey @NikosBat ,
To change the typeface (font) of that title — like from Arial to Times New Roman — you’ll need to update the CSS of your Shopify theme (or whichever platform you’re using).
Here’s a general guide to do it:
Follow these steps:
-
Online Store
-
Themes
-
Edit Code
-
Look for your CSS file — usually under:
-
Assets/theme.css Assets/base.css or Assets/styles.css
-
Add or modify the CSS rule Let’s say the class is .product__title. You can add:
.product__title {
font-family: "Times New Roman", Times, serif !important;
}
Use !important if the font isn’t changing due to higher-specificity styles.
If you’re unsure about the class name, feel free to share a snippet of your theme code or tell me which theme you’re using — I’ll guide you to the exact spot.
Best,
RAjat
Shopify Expert
Hello Rajweb, thank you very much that has solved my problem!
