great on iMac, not so much on iPhone
BobWalsh opened this issue · 2 comments
BobWalsh commented
Went to http://jpntex.com/texttailor/ on my iPhone to test this:
- fit the box example was unreadably small
- post with image had large gaps
Suggest you redo http://jpntex.com/texttailor/ in Bootstrap 3 or some other framework so we can see how this will work on mobile devises
jpntex commented
Hello,
- I removed the padding and increased the height on the 'fit the box' example, it will be more readable now on mobile. The minimum font by default is 1 so it was working as intended, if you want to set it higher please use the
minFont
property:
$('.box').textTailor({
minFont: 12
});
- The ugly gaps are due to the fact that the text is being justified with
text-align: justify
and browsers don't yet support the CSS3 propertytext-justify
to adjust those gaps (except for IE).
Thanks for your feedback
tomByrer commented
ugly gaps are due to the fact that the text is being justified with text-align: justify
How about shutting that off at very small sizes please?