idunno how i'd explain it. if you go on my myspace, (www.myspace.com/punkisdead22), it has a list of friends on it. not the top friends cause i hid that. i made the friends list myself. but i want the friends to be in a horizontal retangle that can go all the way accross the bottom of my myspace. maybe i div? but i just dont want to change anything else on my myspace. i want it all to be exactly the same, just with the extra space at the bottom where i can do that.
if you understand what i mean, please help.
i'll be sooosososoo happy.
;D
How do i make the bottom of my myspace sortof like a div to put stuff in it?
I believe I can visualize a bit what you are saying.
You can adjust the "top", "margin-left", "width" %26amp; "height" attributes to position/size-up the banner, %26amp; where it says "content here", that's where you put stuff in for your friends links. To make a space between each link (since it's horizontal), I'd use this code without the spaces in between:
%26amp; emsp ;
Takes some time to get it just right, but it isn't impossible.
Goes in the About Me. You can also change the background color by using a different hexadecimal color code .. Good luck.
%26lt;style%26gt;
.content {position:absolute; left:50%; top:300px; margin-left:-400px; width:800px; text-align:center; border:2px black solid; background-color:dddddd; padding:5px;}
%26lt;/style%26gt;
%26lt;div class="content"%26gt;
content here
%26lt;/div%26gt;
How do i make the bottom of my myspace sortof like a div to put stuff in it?
Ok...
I use a DIV on my myspace, but it covers the whole profile:
http://www.myspace.com/radiocaf.
First thing, add an open style tag:
%26lt;style type="text/css"%26gt;
What you will need to do is specify what you would like to call your div and open the parameters:
.NAMEHERE {
Now you will need to specify the parameters (options) of the div, i will explain them:
bottom: 0px;
This tells the div that it needs to be placed 0 pixels from the bottom. So absolute bottom.
position: absolute;
This tells the div that the positioning is important
You can specify width and height too, to match your page:
width: 550px;
And now you need to close parameters and style tag:
}
%26lt;/style%26gt;
Now you just add %26lt;div class="NAMEHERE%26gt; before the coding to be placed in the div, and %26lt;/div%26gt; at the end of the coding.
For easiness, this is the final code:
%26lt;style type="text/css"%26gt;
.NAMEHERE {
bottom: 0px;
position: absolute;
text-align: center;
width: 550px;
}
%26lt;/style%26gt;
%26lt;div class="NAMEHERE"%26gt;
CODEHERE
%26lt;/div%26gt;
Any problems, contact me!
No comments:
Post a Comment