Can I change the font size of select words in product titles?

I need to have certain words in a larger font than the rest of the product title, is that possible?

Hello There,

Please share your store URL and Screenshot.
So that I will check and let you know the exact solution here.

It’s middle-earth.yoga but still password protected. Here’s a screenshot. I need ‘Misty Mountains’ to be bigger than ‘Hithaeglir Yoga Mat’ for licensing reasons.

please share me store password.

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid and paste this at the bottom of the file:
h1.product-single__title {
font-size: 25px!important;
}

Thanks, it seems to have made all the writing change size. I need to be able to change the size of the first two words - ‘Misty Mountains’ needs to be bigger than ‘Hithaeglir Yoga Mat’ for licensing reasons. Is there a way to do this with HTML?

1 Like

code have to be modified.

Hi @Zuleica ,

Hope you are doing well. If this snippet does not a problem with you. You can fill data of title your product like this: Misty Mountains Hithaeglir Yoga Mat

Screenshot to refer: https://prnt.sc/119fsou

Please place this code at the end of the “theme.scss” file.

.product-single__title span {

font-size: 30px;

}

Screenshot to refer: https://prnt.sc/119fu8k

Hope this helps.