Want to add a background image to your MySpace?

Want to change the background color of your MySpace?

Use these following codes to acomplish just that.

 

Example Code 1 - Background Image:

This code will add a background image to your MySpace profile and center it.

 

Example Code 2 - Background Color:

This code will show you how to change the background color of your MySpace. It uses hex codes to display the correct color. For Hex code map check out Hex Color Picker

 

Example Code 3 - Static Background Image:

This code will add a background image to your MySpace but make it static so it wont move with the rest of your content.

 

Example Code 4 - Background Image Repeat:

This code will be the same as example 1 but will repeat the back ground image.

 

Remeber the text "YOUR-URL-GOES-HERE" gets replaced with the image location URL.

Also remeber NOT to copy the "Example x:" text!

 

HTML Code:

Example 1:
<style>
body{
        background-image:url("YOUR-URL-GOES-HERE");
        background-repeat:no-repeat;
        background-position:center center;
}
</style>

Example 2:
<style>
body{
       background-color:CCCCCC;
}
</style>

Example 3:
<style>
body{
        background-image:url("YOUR-URL-GOES-HERE");
        background-repeat:no-repeat;
        background-position:center center;
        background-attachment:fixed;
}
</style>

Example 4:
<style>
body{
        background-image:url("YOUR-URL-GOES-HERE");
        background-repeat:repeat;
}
</style>
Comments

There are no comments yet for this page

Leave comment
You must be logged in to do this!