Talk:Change MySpace Background

From OpenTutorial
Revision as of 13:58, 10 October 2006 by Hapa (talk | contribs) (Code placement)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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)