Hi,
I have noticed that the input fields are displayed very large, (depth not width) when browsing with Apples Safari. This affects the username and password field and also the onscreen textedit box appears to type messages like this in. I would say the keyed font is probably size 16 on my Macintosh The rest of the site works really well though.
I use Apple Safari all the time and have never noticed this on any other site I have been to on the web. I don't think it is a problem for Apple, perhaps I will have a look at the page source and try and figure it out also
Cheers
Ed
OK I have had a quick look at the source. The reason why the username and password box is so large is because you have specified them as height 20.
The Browser is interpreting this correctly and threfore the font inside is also size 20 (I was wrong with my estimate of 16). The problem piece of code is:
"try { if (event == null) { event = window.event; } if (event.keyCode == 13){doLogin();} } catch (e) {}"
id="portalUserName0" style="WIDTH: 175px" name=
"portalUserName" size="20" value=""></td>
and
"try { if (event == null) { event = window.event; } if (event.keyCode == 13){doLogin();} } catch (e) {}"
id="portalPassword0" style="WIDTH: 175px" type="password"
name="portalPassword" size="20">
The size needs to be reduced to something decent like 12.
As for the textedit window, I tried to analyse the source but it is too dificult to read. For clarrfication purposes it only really affects you when you are replying to a message and it is the textedit box on the screen which has a font-size of 20.
It may be worth getting the service to serve HTML output in readable format whilst the site is being tested, and once everthing is OK then change it back to the more efficient condensed format.
Ed
Add a comment