Add Extra Stuff to Your Myspace
Add Images to the Background of Your Tables
If you’re wanting to add your own background images to your tables you can place the following code into your About Me section.
<style type="text/css">
table, tr, td
{background-color:transparent}
table table {}
table table table table{}
table table table{
background-image:url(‘ADDIMAGEURLHERE);
background-repeat: repeat;
background-attachment: scroll}
</style>
Background-image:urll(‘ADD YOUR IMAGE URL HERE’); - This is the area where you enter the url of the image you want to be using for the backgrounds.
Background-repeat - This sets the image to repeat itself. You can edit this in the following ways:
background-repeat: no-repeat; (image does not repeat)
background-repeat: repeat-x (repeats the image horizontally only)
background-repeat: repeat-y (repeats the image vertically only)
Add a Border to Your Myspace Page
Adding borders to your Myspace can be a nice touch, especially if you want your profile to stand out. Below is the basic code you can use followed by an in depth explanation as to what you can change.
<style
type="text/css">
body
{
border:WIDTH;
border-color:COLOR;
border-style:SOLID;
}
</style>
Border – This defines the width of the border. Remember to type your value in with a px sign after it.
Border-color – This is the color of the border. You can change the value of this to a color of your choice.
Border-style – This defines the style of the border. In the example above we have solid. This will give a solid border. There are other styles to choose from though which are listed below:
Double
Dotted
Dashed
Grooved
Hidden
Inset
Outset
Ridged
Along with adding backgrounds to your tables you can also add borders.
<style type="text/css">
border-width:widthpx;
border-color:color;
border-style: style;
table table { border: 0px }
table table table table{border:0px }
table, tr, td { background-color:transparent; border:none; border-width:0;}
table table table {
</style>
border-width:widthpx; - This is the width of the border. As its in pixels, remember to place px after your chosen number
border-color:color; - This is the color of your border which can be entered as either color or a hex value.
border-style: style; - This is the style of the border. There are a lot to choose from, and are listed below.
Double
Dotted
Dashed
Grooved
Hidden
Inset
Outset
Ridged
Scrolling text areas can keep your Myspace nice and neat
and prevents it from overflowing or becoming unreadable. Copy and paste the
following code where you want your scrollable box to appear:
<div style=" background-color: COLOR; height: XXXpx; width: XXXpx; overflow: auto; ">
Type your text here.
</div>
Width: XXXpx; This is the width of the box which you can set.
Height: XXXpx; This is the height of your box which you can set.
Background-color: color; This is your background color. You can edit this with either color names or a hex code.
