Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Myspace Code?

If I want to cross off a letter for my display name, what code do I put?

For Example, If I want to put Michael and cross off th letter L, what do I put for the display name.

I want to have an example of full username, like, Michae<x>L</x> or something

Update:

It just shows Michae<s>l</s>

2 Answers

Relevance
  • 1 decade ago
    Favorite Answer

    Unfortunately for you, no. That would mean placing a code in your Interests section that re-opens your ENTIRE left side of your profile, just to input a custom nametext in your default table. That would be impossible to do because there's Javascript in the way, which you cannot duplicate.

    The better way, would be to use a div placed over your name, with the custom text in it that you want.

    Try this. Remember, with an absolute-positioned div, it won't magically show up exactly where you want - you have to adjust the numbers in the "top" and "margin-top" properties to position it in the right place.

    <div class="customName">

    <span class="nametext">

    <s>Michael</s>

    </span>

    </div>

    <style>

    div.customName {position:absolute; height:auto; width:auto; top:200px; margin-left:-150px; background-color:white;}

    </style>

  • 1 decade ago

    it's strike through. put <s>your text here </s>

    in your case,

    michae<s>l</s>

Still have questions? Get your answers by asking now.