How to adjust product title text size on mobile using Dawn theme?

Hi everyone,

How do I change the text size of the product title on mobile? I’m using the Dawn theme?

Url: https://07c55c-77.myshopify.com/

Pass: odeiff

Thank you!

Hello @Blueweb ,

Need to add code into base.css file

@media only screen and (max-width: 769px) {
    .product__title h1 {
        font-size: 14px !important;
    }
}

Thank you :slightly_smiling_face:

1 Like