How do I make my background a picture or image in myspace?

37 Comments

To put in an image as your background picture,
copy and paste this:

<style>
body {
background-image:url(http://XXXXXXXX);
background-repeat:no-repeat;
}
</style>

Where the XXXXXX is the location of the image you want to make your background. if you need help figuring out what that is, I have that on one of my other myspace posts.

If you want the picture to repeat on the page, insert this:
<style>
body {
background-image:url(http://XXXXXXXX);
}
</style>

If you want the background image fixed in place when you scroll down, use this:
<style>
body {
background-image:url(http://XXXXXXXX);
background-attachment:fixed;
}
</style>

Make your myspace tables transparent or opaque and use an image as your background

53 Comments

For making your myspace profiles – If you dont pimp your profile, you are nobody. People wont respect you in the community. For making cool backgrounds, and your boxes (tables) transparent or moderately opaque, here are some tools I made today.
They are all clean now. if you do a search for these things normally, they will always try to enter in their own ads into your myspace page. dont be violated. I havent sold out yet – so here is some very clean code for pimping your myspace. Be Safe.

For: transparent boxes – custom background image
<STYLE>
td, table, tr, span, li, p, div, textarea, DIV
{
background-color: transparent;
}
body
{
background-image: url(http://XXXXXXXXXX);
background-repeat: repeat;
}
</STYLE>

opaque boxes and a background image>>>>
insert the following inside your style brackets… (What are Style Brackets?)

td.text td.text a img {width:50px !important;}
table, td, textarea, a, body, input{background-color:transparent;border:none;border-width:0}
table table table {border:10px double; border-color: 000000; padding:1; background-color:FFFFFF; filter:alpha(opacity=95); -moz-opacity:0.7; opacity:0.90; -khtml-opacity:0.4;}
table table{border:0px}
table table table table{border:0px}
body {
background-image:url(http:/XXXXXXXXXXXXXXXXXX);
}

you can play with the highlighted line to get the degrees how you want it. be careful! you may lose visibility altogether, and then you will have to navigate solely using your instruments.

How do I change my myspace background color?

1 Comment

Heres another simple thing to do to pimp your myspace. Change the color of your myspace background…

To change your background color, copy and paste this text into the about me section of your profile
<style type=”text/css”>
body { background: ffffff;}
</style>

ffffff represents what color you are making the background. To get the code for the color that you want, you can check out this color chooser tool: http://www.profilehtml.com/tools/color-chooser.htm

Now, to put in an image as your background picture,
copy and paste this:

<style>
body {
background-image:url(http://XXXXXXXX);
background-repeat:no-repeat;
}
</style>

Where the XXXXXX is the location of the image you want to make your background. if you need help figuring out what that is, I have that on one of my other myspace posts.

If you want the picture to repeat on the page, insert this:
<style>
body {
background-image:url(http://XXXXXXXX);
}
</style>

If you want the background image fixed in place when you scroll down, use this:
<style>
body {
background-image:url(http://XXXXXXXX);
background-attachment:fixed;
}
</style>

You are now programming in CSS! it’s a start. In order to change your myspace profile, you must use CSS language. its not too tough, just do it in pieces, and remember every beginning should have an end.