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)

All Links Upper Case
February 16, 2007
This code will transform all links in profile page to upper case.
Instructions:
- Copy and paste the code into About Me
- Save your editing and preview. Done. =)
<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>
All Links Lower Case
February 16, 2007
This code will transform all links in profile page to lower case.
Instructions:
- Copy and paste the code into About Me
- Save your editing and preview. Done. =)
<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>