Heres another simple thing to do to pimp your myspace. Change the color of your myspace background…

To change your background color, copy and paste this text into the about me section of your profile
<style type=”text/css”>
body { background: ffffff;}
</style>

ffffff represents what color you are making the background. To get the code for the color that you want, you can check out this color chooser tool: http://www.profilehtml.com/tools/color-chooser.htm

Now, to put in an image as your background picture,
copy and paste this:

<style>
body {
background-image:url(http://XXXXXXXX);
background-repeat:no-repeat;
}
</style>

Where the XXXXXX is the location of the image you want to make your background. if you need help figuring out what that is, I have that on one of my other myspace posts.

If you want the picture to repeat on the page, insert this:
<style>
body {
background-image:url(http://XXXXXXXX);
}
</style>

If you want the background image fixed in place when you scroll down, use this:
<style>
body {
background-image:url(http://XXXXXXXX);
background-attachment:fixed;
}
</style>

You are now programming in CSS! it’s a start. In order to change your myspace profile, you must use CSS language. its not too tough, just do it in pieces, and remember every beginning should have an end.