Difference between revisions of "Change MySpace Background"

From OpenTutorial
Jump to navigation Jump to search
(Optional Background Image settings)
(Reverting Vandalism)
Line 35: Line 35:
 
{{adsense2}}
 
{{adsense2}}
  
[[Image:yo-myspace.jpg]]==== Optional Background Image settings ====
+
==== Optional Background Image settings ====
  
 
background-attachment:"VALUE";<BR>
 
background-attachment:"VALUE";<BR>
Line 99: Line 99:
  
 
This effect can be seen at [http://www.myspace.com/hapa01 www.myspace.com/hapa01]
 
This effect can be seen at [http://www.myspace.com/hapa01 www.myspace.com/hapa01]
 +
  
 
== Glossary ==
 
== Glossary ==

Revision as of 00:48, 21 September 2007

MySpace Customizing is mainly done through Cascading Style Sheets (CSS) this tutorial explains How to Change the Background of your MySpace Page


Changing the Color

To change the background to any color you have to use the following code in your profile:

<style>
    body{
        background-color: Color;
    }
 </style>

Where "Color" is any standard html RGB value

RGB Color Picker

<flash>file=OTColorpicker.swf|width=600|height=300</flash>

Changing the Background Image

To change the background to an image is similar, just use the following code:

<style>
    body{
        background-image:url("URL");
    }
</style>

Where "URL" is the location if the image to be used.


Optional Background Image settings

background-attachment:"VALUE";

Value Description
scroll The background image moves when the rest of the page scrolls
fixed The background image does not move when the rest of the page scrolls.


background-repeat:"VALUE";

Value Description
repeat The background image will be repeated vertically and horizontally
repeat-x The background image will be repeated horizontally
repeat-y The background image will be repeated vertically
no-repeat The background-image will be displayed only once


background-position: "VALUE";

Value Description
top left
top center
top right
center left
center center
center right
bottom left
bottom center
bottom right
If you only specify one keyword, the second value will be "center".
x-% y-% The first value is the horizontal position and the second value is the vertical. The top left corner is 0% 0%. The right bottom corner is 100% 100%. If you only specify one value, the other value will be 50%.
x-pos y-pos The first value is the horizontal position and the second value is the vertical. The top left corner is 0 0. Units can be pixels (0px 0px) or any other CSS units. If you only specify one value, the other value will be 50%. You can mix % and positions.

Example

<style>
    body{
    background-image:url(http://www.crashlanding.us/photos/albums/wpw-20051116/Crash_Landing_Logo_1024x768.jpg);
        background-attachment:fixed;
        background-repeat:no-repeat;
        background-position: center center;
        background-color: #000000;
    }
</style>

This effect can be seen at www.myspace.com/hapa01


Glossary

CSS[1]
HTML[2]
MySpace[3]
RGB[4]
URL[5]