I am trying to make the font size of an element larger on the product page. The website is www.mglaser.com and I have attached a screenshot as well. The SKU number is quite small and I would like it to be just slightly smaller than the product title. Any advice on how to accomplish this?
1 Like
I just like to clarify, you like to smaller only the text of the SKU right?
Try this one then.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.product-sku {
font-size: 10px;
}
- And Save.
- Result:
1 Like
I actually wanted it to be larger, but I was able to use your directions to change it to 30 px. Thank you so much!

