How to modify the product title size? I want the title size of the computer version to be different from the product title of the mobile product page. Now the product title of the mobile product page is too large. The following code I wrote separately does not work. How to modify it? The current product page title size is
.product_title {
font-size: 24px;
}
Mobile product page product title code
@media (max-width: 576px) {
.product_title {
font-size: 18px;
}
}
Is it like this? But why is it not effective? How to modify it?