iOS Safari – How to Increase Text Size on iOS Safari

iossafariweb-browser

On macOS, it is possible to increase the text size of a webpage using the ⌘+ or ⌘- gestures. This even works on Chrome on macOS, as well as many other browsers. Is it possible to do something like this on iOS Safari, or iOS in general?

Best Answer

New Answer: Base on this and this

  1. Bookmark this page
  2. Navigate to your bookmarks and edit the bookmark added in Step 1
  3. Change the name to "Increase Text Size"
  4. Replace the URL with the code labeled "Increase Text Size" below
  5. Repeat steps 1-3, but change the name to "Decrease Text Size"
  6. Repeat step 4 but with the code labeled "Decrease Text Size" below

Increase Text Size: javascript:var%20p=document.getElementsByTagName('*');for(i=0;i%3Cp.length;i++)%7Bif(p%5Bi%5D.style.fontSize)%7Bvar%20s=parseInt(p%5Bi%5D.style.fontSize.replace(%22px%22,%22%22));%7Delse%7Bvar%20s=12;%7Ds+=2;p%5Bi%5D.style.fontSize=s+%22px%22%7D

Decrease Text Size javascript:var%20p=document.getElementsByTagName('*');for(i=0;i%3Cp.length;i++)%7Bif(p%5Bi%5D.style.fontSize)%7Bvar%20s=parseInt(p%5Bi%5D.style.fontSize.replace(%22px%22,%22%22));%7Delse%7Bvar%20s=12;%7Ds-=2;p%5Bi%5D.style.fontSize=s+%22px%22%7D


Old Answer:

From this article

Here’s how you can use Reader in Safari for iPhone or iPad to increase text size of web pages:

  1. Open Safari and go to any webpage with a lot of text, like an article or news piece

  2. From any Safari browser window in iOS, hit the “Reader” button in the URL link bar to enter into Reader View – the Reader button looks like a series of lines atop one another

  3. Once in Reader Mode, tap on the “aA” icon in the corner of the screen

  4. Now tap the larger “A” button on the right side of the popup menu to increase text size

  5. Tap the “A” button repeatedly to dramatically increase the font size of web pages in Safari Reader mode

Although this does not change the text size, you can pinch and zoom.

Lastly, you can change the font size. Although this will not help with Safari it will increase text size in other apps.

Related Question