Hi, I want to reduce the size of my product page’s title.
I want to be able to choose the size myself
Hi, I want to reduce the size of my product page’s title.
I want to be able to choose the size myself
Hi embracethegrind,
Yes, you can absolutely control the size of your product page title in Shopify. Here’s a simple way:
Go to your Shopify admin → Online Store → Themes → Edit code.
Find your product page file (usually product-template.liquid or main-product.liquid).
Look for the product title element, often wrapped in <h1 class="product__title">.
Add a custom CSS rule in your theme.css or base.css file:
.product__title {
font-size: 28px; /* change the number to the size you want */
}
You can adjust the number (px, em, or rem) until it looks right.
Thanks.
.product__title h1 {
font-size: 28px;
}