Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML How to Make a Website Customizing Colors and Fonts Resize Text

Adar Raiz
Adar Raiz
2,199 Points

why the text in my mobile is too small to read and on the desktop it's readable?

I open this site on an iPhone 6 plus and on Motorola LG V3, the text was too small to read, but when i open it on a desktop and shrink the browser to mobile width the text size was fine and readable

2 Answers

Adar Raiz
Adar Raiz
2,199 Points

I found the solution on advanced video in this course, need to add meta name="viewport" content="width=device-width, initial-scale=1.0"

Adrian Patrascu
Adrian Patrascu
15,279 Points

Hi Adar,

The issue you are seeing is most surely seen because the person that developed the site did not take into consideration the "mobile first approach" in which you need to develop the site for mobile devices first and then scale it for big screens as well. The way you can do this is by using media queries. Please see: http://www.w3schools.com/cssref/css3_pr_mediaquery.asp

Thank you, Adrian