How do I add a Background Image to MySpace Profile?
The following steps will help you add a background image to your MySpace profile.
First, you have to choose an image. Do not use copyrighted images without permission.
Upload the image on your website or another place that’s holding an image for you. If you don’t know where to put your image check Photobucket, Flickr, Picasa, Imageshack, etc.
Check and write down your image URL. This appears at the top of your browser and is similar to this https://www.cavsi.com/myspace/image1.jpg
Inside the “About Me” section in your MySpace profile, add this code:
<style type=”text/css”>
body
{
background: url(http://YourImageURLhere);
background-attachment: fixed;
}
</style>
if you do want the image to move when a person scrolls down your profile instead of the above code put the below one:
<style type=”text/css”>
body
{
background: url(http://YourImageURLhere);
background-attachment: attachment:scroll;
}
</style>
If you want the image to only repeat horizontally, add bellow background-attachment:
background-repeat: repeat-x;
If you want the image to only repeat vertically, add bellow background-attachment:
background-repeat: repeat-y;
If you want the background to not repeat at all, add bellow background-attachment:
background-repeat: no-repeat;
You can replace YourImageURLhere with your image location. (https://www.cavsi.com/myspace/image1.jpg)