in reply to Fonts on browser too small.

If this change happened today, most likely, you got a bad version of the site CSS.

If this situation was "always that way", you can change how the site is displayed using custom CSS in the Display Settings, or by enlarging the default font size your browser uses.

We do not use Javascript for the website here, especially not for automatically messing with settings that a user might want to set themselves. Javascript is far too great a vector for security problems, so I do not want to encourage its use where it is unnecessary.

Potentially, we could set up different screen layouts or font sizes using the @media selector, but so far, nobody has done so. For example, you could set up special hints for the browser if it thinks it is a low-resolution, low-input features browser:

@media handheld, projection, tv { #box { position: absolute; } }

In theory, the same could also be done for large-browser environments:

<link media="only screen and (max-device-width: 480px)" href="iPhone.c +ss" type="text/css" rel="stylesheet" /> <link media="only screen and (min-device-width: 1920px)" href="bigScre +en.css" type="text/css" rel="stylesheet" />

... but just because I have a big screen does not mean that my browser takes up the whole available width of 1920 pixels.

Replies are listed 'Best First'.
Re^2: Fonts on browser too small.
by flexvault (Monsignor) on Aug 28, 2011 at 12:13 UTC

    PM is a very small part of my day. But you do have some javascript, see below:

    <div class="perlads"><script type="text/javascript" src="http://adserv +er.szabgab.com/ads/direct_link_selflink.js?cnt=3"></script> </div>

    But if the fonts are too small tomorrow, I will look at doing one of suggestions.

    Thank you

    "Well done is better than well said." - Benjamin Franklin

      But you do have some javascript, see below:

      That is not javascript or proof of javascript on perlmonks, its just stuff in code tags :)