Refresher product title too big - cannot edit

I am trying to edit my product title to make it smaller, as on mobile it is way too big.. but I can’t seem to get it to work.

My store link is - https://lottewohnen.com/

Would appreciate any help

Hi @cc18 ,

You can try the following.

  1. Go to Admin > Online store > Themes > Actions > Edit code
  2. Go to Asset folder, and open the base.css file
  3. Add the code below.
@media only screen and (max-width: 750px) {
.product__title h1 {
    font-size: 30px;
}
}

Please add below css code in bottom of base.css file

.product__info-container h1 {
font-size: 30px !important;

}
Thank you.