PDA

View Full Version : applet border on desktop


mitmo
09-04-2002, 07:53 PM
I'm using a java applet in an html page as my desktop wallpaper and it seems to always appear with a white border on the top & left hand sides of the screen. Is there a way to get rid of these borders?
Thanx!
see the code below...

<!--
<BODY bgcolor="#000000" topmargin=0 leftmargin=0 rightmargin=0 bottommargin=0 border=0>
<applet archive="starzone.jar" code="starzone.class" width="100%" height="100%">
<param name="density" value="low">
<param name="background" value="black.jpg">
<param name="fgmax" value="1">
<param name="fgimage1" value="view3.gif">
<param name="fgxpos1" value="-80">
<param name="fgypos1" value="-60">


</BODY>
-->

redhead
09-04-2002, 08:52 PM
as i dont know what the applet is/does, i cant help much... but i can suggest putting style="border: 0 0 0 0;" in the <applet> tag and closing the applet tag after all the <param>'s with an </applet>

also make sure that "black.jpg" doesnt contain the offending border, as is big enough to cover the whole screen, thus not being pushed down and right

just a few thoughts really, let us know if it doesnt help.