PerlMonks is currently using DTD HTML 4.0 Transitional for its DOCTYPE. With that in mind, a few things in the <head> could be changed to make the red circle with an X in it appear less often.

The current code is...

<head> <title>Perl Monks Discussion</title> <!-- Theme 0: Web safe blue PerlMonks Theme --> <link rel="stylesheet" href="/css/common.css" type="text/css" /> <link rel="stylesheet" href="?node_id=204962" type="text/css" /> <!-- No CSS Link in User Settings --> <style type="text/css"> .inlinecode {color:#600;} .codeblock {color:#006;font-size:8pt;} </style> <link rel="icon" href="/favicon.ico" /> </head>

Valid code for DOCTYPE...

<head> <title>Perl Monks Discussion</title> <!-- Theme 0: Web safe blue PerlMonks Theme --> <link rel="stylesheet" href="/css/common.css" type="text/css"> <link rel="stylesheet" href="?node_id=204962" type="text/css"> <!-- No CSS Link in User Settings --> <style type="text/css"> .inlinecode {color:#600;} .codeblock {color:#006;font-size:8pt;} </style> <link rel="icon" href="/favicon.ico"> </head>

The difference is subtle, the / at the end of the <link> and <img> tags do not belong in DTD HTML 4.0 Transitional.

As an aside, can I please have the styles back in my profile. When I wrote it ages ago when styles were still allowed, it looked good, now it doesn't. So, pretty please with cookies!

Have a nice day!
Lady Aleena

In reply to For valid HTML by Lady_Aleena

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.