I want to only change the font size of body text to 12px in mobile mode, but i dont know how…
Here is the link to my site: https://creamcy.com/
I want to only change the font size of body text to 12px in mobile mode, but i dont know how…
Here is the link to my site: https://creamcy.com/
yes, please check theme customization its easy if don’t find so please add this code
body {
font-size: 12px !important;
}
Hi @lorrnnzo ,
You can follow the instruction below:
@media (max-width: 749px) {
body {
font-size: 12px !important;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.