How To Change The Font Size Of The Product Title In IMPULSE Theme?
Topic summary
A user seeks guidance on modifying the product title font size in Shopify’s IMPULSE theme.
Three solutions provided:
-
Beae_Cass (Anthony) suggests:
- Navigate to Online Store > Themes > Edit code
- Open theme.liquid file
- Paste custom markup code before closing tag
- Adjust values to fit the store’s needs
-
ZestardTech recommends:
- Access Shopify Admin > Online Store > Themes > Actions > Edit code
- Locate Asset > theme.css
- Add CSS at bottom:
.h2.product-single__title { font-size: 25px; }
-
ZenoPageBuilder advises:
- Go to Edit theme code in Shopify Admin
- Open base.css file
- Insert CSS at bottom:
.product-single__title { font-size: 32px; } - Adjust font size value as needed
All responses provide CSS-based solutions with varying file locations (theme.liquid, theme.css, or base.css) and slightly different selectors, giving the user multiple implementation options.
Hi @shengwenwen ,
This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.
While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:
- Go to Online Store → Theme → Edit code
- Open your theme.liquid file
- Paste below code before :
Note: You can adjust value to fit your store
Best regrads,
Anthony
Hello there,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme.css and paste this at the bottom of the file:
.h2.product-single__title {
font-size: 25px;
}
Hello @shengwenwen ![]()
Inside Shopify Admin, go to Edit theme code, open file base.css and add this code at the bottom
.product-single__title {
font-size: 32px;
}
Feel free to change the font size value as you need.
