Expand my Community achievements bar.

Phone Delivery - Increase Font size.

Avatar

Level 3

Hello out there smart Adobians... I have a question. I am delivering to Phones and I am finding I can't get the font size to show up larger than like size 2px. My content is being accessed through a web browser and a tablet format as well. I have all HTML documents for all access points but I can barely read it on a phone. Does any one have a suggestion for adaptive design to a phone that would have it detect that it is being accessed on a smaller screen and there fore needs to be larger font?

2 Replies

Avatar

Employee

I assume you're using CSS?

font-family: montserrat, sans-serif;

font-size: 12px;

Are you using media queries?

* Mobile view */

@media screen and (max-width:480px) { ... }

Do your fonts render correctly on your laptop browser?

Avatar

Level 3

Thanks for that. I totally blanked. The coffee hasn't hit. Yes its a CSS thing not a AEM thing. Much appreciated.