Whats the Html Code for a BLACK default myspace layout?

  • Thread starter Thread starter nikki monasterio
  • Start date Start date
N

nikki monasterio

Guest
i know the code for a white default
<style>
body { background-color: transparent; border: none; border-width: 0px; }
body { background-image: url(URL OF PICTURE);
background-attachment: fixed;
background-position: 0,0;
background-repeat: repeat;}
</style>

BUT i want it to be black instead of white.
i would also like the html code not a website that gives me layouts with black defaults
because i would like to choose my background
thank you!
 
change 'transparent' to '000000'
'000000' is the HTML color code for black....

Ex.

<style>
body { background-color: 000000; border: none; border-width: 0px; }
body { background-image: url(URL OF PICTURE);
background-attachment: fixed;
background-position: 0,0;
background-repeat: repeat;}
</style>
 
Back
Top