Help:How to fix your signature

This is an old revision of this page, as edited by 82.9.59.164 (talk) at 17:31, 18 September 2007 (You are not using "raw signatures"). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Changes made in November 2005 on the version of the MediaWiki software running Wikipedia altered the way signatures work. If your signature is not working now (but was working previously), you will need to make some changes to your "my preferences" page.

You are not using "raw signatures"

MediaWiki makes the creation of simple, straightforward signatures relatively easy. For example, if User:Example wants a signature that displays as Example, he would simply have to enter Example in the Nickname field in shut up i dont believe you :P my preferences. The software automatically places [[User:Example| in front of and ]] behind the entry, to form [[User:Example|Example]]; this escapes as Example. Wiki markup and HTML markup do not function in the Nickname field, unless the Raw signatures option is checked in preferences.

You are using "raw signatures"

If you have been using "raw signatures" all along but find that your signature is now not working, you may find the following message displayed in your preferences:

Invalid raw signature; check HTML tags.

This means you are using invalid markup on your signature. Some possible causes with their corresponding solutions:

Unclosed tags
If you are opening a tag without the corresponding closing tag (for instance: [[User:Example|<span style="color:white">Example]]), you should close the tag (for instance: [[User:Example|<span style="color:white">Example</span>]]). It's also a good idea to put the tags outside the link if possible (for instance: <span style="font-family: serif">[[User:Example|Example]]</span>).
Mismatched or incorrectly nested tags
If the tags are mismatched (for instance: <s><u>hi</s></u>), fix them (for instance: <s><u>hi</u></s>).
Unquoted attributes
It's also recommended to use quotes on all attributes (for instance, use <span style="color:white"></span> instead of <span style=color:white></span>).
Unclosed entities
If you have a HTML entity which is lacking the final ;, you need to add it; if you have a bare &, it must be replaced by &amp; (a bare & is always a mistake in either HTML or wikicode).
Unescaped special characters
If you are using one of &, <, or >, and want it shown as text, it must be escaped as &amp;, &lt;, or &gt;, respectively.

Remember that all wikilinks show up as bold black text on the page they link to, so if you are testing your signature on your userpage/talk page and the user/talk part of it doesn't show up as a link, that may be why.

A note on long signatures

The markup for your signature is visible in the edit window; if it is too long, it makes editing the page harder. Try to keep the markup length below about one line of text. Also, the signature length is, since 2007-06-13, restricted to 255 bytes (bug #8458, r22960), later changed to 255 characters (bug #10338, r23389).