
1st off - if you have this kind of onload handler:
[quote]if (!attachOnLoadHandler(function(){vslide()})) window.onload = function(){vslide()};[/quote]
you don't need to set a Timeout at the end of the function
[quote]setTimeout("vslide()",8000);[/quote]
both of your onload handlers are like this, so just choose one or the other becoz you are loading the functions twice with this hence causing your boxes to double in some browsers.
if that's your only js and that's is all that's in your js, then you can remove the alert that labels your profile with a "Best Viewed in X browser" thingy becoz you don't want to tell your viewers that do ya?
.gif)
once you're done with that, pls try the floating trick again

I have a good feeling it will work this time
btw, if you choose the first kind of onload handler, I think it's best to just make your 2 onload handlers into 1 and put all the js requiring onload handler inside of the it because that loads the [b]function it points to[/b] once the normal page content is finished loading.
Last edited by shakiro214 (2008-02-21 03:01:31)