0

I have a website (maxbraun.us). I've noticed that, on the home page of the mobile version, sometimes when the page loads (and always when the page is reloaded) the font shrinks a great deal and makes everything look bad. But nothing else changes. I am wondering if anyone knows why this happens and how I can fix it. I am on an Iphone 5 by the way.

thanks in advance!

Max
  • 25
  • 1
  • 6
  • If your pages are set up to HTML5 you could use the line: on each page. Otherwise investigate Media Queries that can force a font size depending on the device width and height. –  Sep 01 '14 at 03:18

1 Answers1

0

You can use CSS to resize the text:

<p style="font-size: 500%">Coding Like a Pro!</p>

Hope this helped

Matthew W.
  • 413
  • 1
  • 9
  • 17
  • yes, I know how to set the size of text. It usualy is the right size but it changes when I reload the page, but only on my Iphone. – Max Sep 01 '14 at 02:47
  • This question has already been answered - http://stackoverflow.com/questions/3466434/font-size-issue-with-iphone?rq=1 – Matthew W. Sep 01 '14 at 02:48