Resize Comment Images

February 16, 2007

Hate those huge size comment pictures that messing up your MySpace profile?
Yes! I hate them too.
Wait wait, don’t delete them, well, we can just resize them all by using this code.

Screenshots:

  • before: (page is horizontally extended)
  • after: (image is resized, fit in the comment table)

Read the rest of this entry »

All Links Upper Case

February 16, 2007

This code will transform all links in profile page to upper case.

Instructions:

  1. Copy and paste the code into About Me
  2. <style type="text/css">
    a:link {
    text-transform: uppercase;}
    a:visited {
    text-transform: uppercase;}
    a:hover {
    text-transform: uppercase;}
    a:active {
    text-transform: uppercase;}
    </style>

  3. Save your editing and preview. Done. =)

All Links Lower Case

February 16, 2007

This code will transform all links in profile page to lower case.

Instructions:

  1. Copy and paste the code into About Me
  2. <style type="text/css">
    a:link {
    text-transform: lowercase;}
    a:visited {
    text-transform: lowercase;}
    a:hover {
    text-transform: lowercase;}
    a:active {
    text-transform: lowercase;}
    </style>

  3. Save your editing and preview. Done. =)