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.


In reply to Re: Fonts on browser too small. by Corion
in thread Fonts on browser too small. by flexvault

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.