[b]@kangkong10[/b] -

seriously, I don't think that will work, those are just names and ids

[b]@buttkicker[/b]
Actually this code doesn't have a built-in function for floating on the right-side, also I do not know how to make one as I have only taken the code from a website and modified it to work on friendster, but this has been asked before, so I'll also show you what I replied for it:
[b]from post #38[/b]
[quote=shakiro214][quote=ameng]what about if i want to change it to the RIGHT?[/quote]
There's probably a better way to get it on the right side, but for now you can try this.
[b]replace this part:[/b]
[quote]var startX = 20;[/quote]
[b]with the following:[/b]
[quote]if (document.body.clientWidth>="1100")
{
var startX = 1080;
}
else
{
var startX = 824;
}[/quote]
the 1st startX is for screens with resolution widths of 1280
the 2nd startX is for screens with resolution widths of 1024
I don't ever bother with the 800 width

Remember that startX represents the distance from the left edge of your browser in pixels
the given widths are for content no wider than 200 pixels, but you can adjust them to hold wider or smaller content

[/quote]
Last edited by shakiro214 (2008-03-12 12:37:48)