iphone - Custom CSS for mobile font size -
I'm working with a SquareSpace template and fixing a few things while looking at my mobile phone on a mobile device Would like to) My website is
Here is the code I was trying to and there was no luck with it.
/ * ---------- Mobile --------- * / @ Media only screen and (max-width: 640px) {. Desc-wrapper {font-size: 24px; }}
I have attached an image to help show that what I am trying to decide. Thanks
The font size is set with
.desc-wrapper p, so resizing will need to be done as follows:
@ Media only screen and (max-width: 640px) {.desc-wrapper p {font-size: 24px; } / * Header change * / .sqs-block-content h1 {fonts-size: 18px; }}
Comments
Post a Comment