Difference between revisions of "Talk:Change MySpace Background"

From OpenTutorial
Jump to navigation Jump to search
 
(Code placement)
 
Line 1: Line 1:
Where exactly should the code be placed to be effective? Any field i tried to add something with don't seem to have any effect on myspace's pages.
+
== Code Placement ==
 +
Where exactly should the code be placed to be effective? Any field i tried to add something with don't seem to have any effect on myspace's pages. -[[User:Nolan|Nolan]] 05:43, 10 October 2006 (MDT)
 +
 
 +
:It shouldn't matter which field you place the code in as long as you place it within Style tags.
 +
 
 +
:There was an error in the page, I fixed it. Do not use quotes when using the background-color style.
 +
 
 +
:Also make sure that you have the background code placed only once.
 +
 
 +
:If you have
 +
 
 +
<style>
 +
    body{
 +
        background-color: Red;
 +
    }
 +
</style>
 +
 
 +
 
 +
<style>
 +
    body{
 +
        background-color: Blue;
 +
    }
 +
</style>
 +
 
 +
:The Red color will be ignored and the blue will show.
 +
 
 +
: I hope this works for you  --[[User:Hapa|Hapa]] 07:58, 10 October 2006 (MDT)

Latest revision as of 13:58, 10 October 2006

Code Placement

Where exactly should the code be placed to be effective? Any field i tried to add something with don't seem to have any effect on myspace's pages. -Nolan 05:43, 10 October 2006 (MDT)

It shouldn't matter which field you place the code in as long as you place it within Style tags.
There was an error in the page, I fixed it. Do not use quotes when using the background-color style.
Also make sure that you have the background code placed only once.
If you have
<style>
   body{
       background-color: Red;
   }
</style>


<style>
   body{
       background-color: Blue;
   }
</style>
The Red color will be ignored and the blue will show.
I hope this works for you --Hapa 07:58, 10 October 2006 (MDT)