HTML Help Forum HTML Help
Please Search for the answer to your question before asking it! Thanks.
 

myspace background
Post a Reply to this Topic Ask a New Question
Click here to go to the original topic
       HTML Help Forum -> MySpace
View previous topic :: View next topic  
Author Message
fenderstreet



Joined: 06 Nov 2005
Posts: 3

Posted: Sun Nov 06, 2005 6:02 pm     myspace background  

Hey I'm kinda new to myspace and I was just wondering what's the html code to change the background colour and also if you want to change it to a picture you have?
zylstra



Joined: 10 May 2004
Posts: 138

Posted: Sun Nov 06, 2005 9:48 pm      

http://www.htmlcodetutorial.com/document/_BODY_BACKGROUND.html
fenderstreet



Joined: 06 Nov 2005
Posts: 3

Posted: Mon Nov 07, 2005 1:50 pm      

I tried that but it didn't work, I put the code in the About Me thing...
gary.newelluk



Joined: 12 May 2005
Posts: 552
Location: Inverurie, Scotland

Posted: Tue Nov 08, 2005 4:38 am      

The web design forums at myspace are very good and you can find a stylesheet maker which enables you to change the styles to your whole myspace profile without knowing too much about the code.

To change the background on myspace you need to add

Code:
<style>
body
{
       background: black;
}

</style>


The above example sets the background to black. Obviously if you did that you'd want the text to be white (or a light colour) so you would add

Code:
<style>
body
{
       background: black;
       color: white;
}

</style>


This only changes the background colour of the page. Your myspace profile is built up using tables. This is the point I recommend you read the myspace forum topics on profile design because the structure is quite involved.

For example there are 4 nested tables used to display the about me section so you would have to add

Code:
<style>
table table table table
{
       background: black;
}

</style>


to make the background of the about me section black. More annoying is the fact that they allow CSS but then don't give any of the tables ID names or Classes.
fenderstreet



Joined: 06 Nov 2005
Posts: 3

Posted: Tue Nov 08, 2005 6:51 pm      

Thanks so much!
Iceman



Joined: 24 Nov 2005
Posts: 30

Posted: Fri Nov 25, 2005 11:57 am      

you can just make it simpler by using the <body> tag and use it like
<body bgcolor='color name'> or <body bgcolor="#000000">
 
 
DARFUR
HOSTING / DESIGN
MAKE MONEY

       HTML Help Forum -> MySpace
Page 1 of 1


Powered by phpBB Search Engine Indexer
Powered by phpBB 2.0.19 © 2001, 2002 phpBB Group