FlyerTalk Forums - View Single Post - Feedback on FT new style, March 2018
View Single Post
Old Mar 27, 2018, 11:33 am
  #254  
airsurfer
 
Join Date: Dec 2009
Posts: 552
@WIRunner: When using landscape mode on a cellphone (what I do) the screen appears about the same like on a computer.

I see in all screenshots that there is a lot of empty space on the right, even in narrow (portrait) mode.
Setting CSS:

Code:
#tpost { width: 130%; }
solves this problem, but the posts are still scrolled away horizontally.
The div's containing the message should never scroll over the right edge.
The 'small font' problem in portrait can be solved by putting this line in the header:


Code:
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes">

which allows to zoom out 1/2x and in 2x and the letters are not small anymore.

Last edited by airsurfer; Mar 27, 2018 at 11:42 am Reason: css
airsurfer is offline