How can I adjust font size and style on my webpage?

Hi,

I want to know if there is any change to make the font size different.

For example, I want the HL135.page to be bold and HD 13"x5" LACE to be smaller.

This is how I want to change it.

You can see how it looks like right now on our website: https://www.motowntress.com/

Thank you!

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
@media screen and (min-width: 641px){
.CollectionInner__Products .ProductListWrapper .ProductItem__Info h2.ProductItem__Title {
font-size: 17px;
font-weight: 700;
margin-bottom: 0;
}
.CollectionInner__Products .ProductListWrapper .ProductItem__Info .u-h6 {
font-size: 14px;
}
}