Hi I am trying to edit the mobile version of the body text font size to be smaller. I can’t find how to make the font smaller (1.2rem desired) I have tried pasting the following examples to the bottom of my base.css file among other variations of the same and can’t seem to achieve the desired results. I have tried using font size as pixels as well as rem.
body {
@media only screen and (max-width: 749px) {font-size: 1.2rem;}
}
AND
@media (max-width: 749px) { body { font-size: 1.2rem !important; } }
Please help! Thank you in advance!