Hi everyone,
How do I change the text size of the product title on mobile? I’m using the Dawn theme?
Url: https://07c55c-77.myshopify.com/
Pass: odeiff
Thank you!
A user seeks to modify the product title font size on mobile devices in Shopify’s Dawn theme.
Solution Provided:
base.css file.product__title h1 font-size to 14px with !important flagStatus: Resolved - the original poster confirmed the solution worked with a thank you message.
Hi everyone,
How do I change the text size of the product title on mobile? I’m using the Dawn theme?
Url: https://07c55c-77.myshopify.com/
Pass: odeiff
Thank you!
Hello @Blueweb ,
Need to add code into base.css file
@media only screen and (max-width: 769px) {
.product__title h1 {
font-size: 14px !important;
}
}
Thank you ![]()