|
MySpace Background Image
This article tells you how to change the background using
CSS. You are only allowed to
change the background of your MySpace profile using CSS.
Changing the main background color using CSS
Copy and paste the following code into your MySpace profile.
You will need to insert (in place of the
red text) your own values. You can use our
color selector to find the
six-digit number value for different colors.
|
body { background:
ffffff;} |
Changing the main background image using CSS
Copy and paste the following code into your MySpace profile.
You will need to insert (in place of the red text)
your own absolute url value of the image you would like in your
background.
|
body { background:
url("http://members.aol.com/htmlbloghelp/spring.jpg")
no-repeat fixed center;} |
Changing the main background color and image using CSS
Copy and paste the following code into your MySpace profile.
You will need to insert (in place of the
red text) your own values. You can use our
color selector to find the
six-digit number value for different colors. You will need
to insert (in place of the red text)
your own absolute url value of the image you would like in your
background.
|
body { background:
ffffff url("http://members.aol.com/htmlbloghelp/spring.jpg")
no-repeat fixed center;} |
|