I am trying to change the size of the circled font in the attached photo.
I found a code that was supposed to change the size in the product page but it did not work.
the code provided was to paste the following code in theme.liquid above the
I am trying to change the size of the circled font in the attached photo.
I found a code that was supposed to change the size in the product page but it did not work.
the code provided was to paste the following code in theme.liquid above the
Hi @sfoster95
I assume you want both text to be adjusted in the same size. You can use the code below
NOTE: Change 30px to the size you want
.featured-product .product__title,
cart-items .title.title--primary {
font-size: 30px;
}
I was able to get it to change by changing the h1 code in the base.css to this
}
h1,
.h1 {
font-size: calc(var(–font-heading-scale) * 3rem);
}