//flex table opened by JP

Click to See Complete Forum and Search --> : Borders around desktop image


dtech10
09-10-2002, 01:23 PM
Hi
I using the code below to display an image on the desktop only trouble is I get a border around the image, I've tryed border=0 and the vspace/hspace commands to to no avail, what code do I need to do this.
Thanks

HTML>
<HEAD>
<BODY BGCOLOR=#3A6EA5>
<IMG SRC=d:\Documents\Pictures\Ripple.jpg WIDTH=100% HEIGHT=100%>
<SCRIPT language=JavaScript>
// Code
</SCRIPT>
</BODY>
</HTML>

DocEvi1
09-10-2002, 01:25 PM
Whats the javascript for? Anyway, I would guess that the image isn't been resized to 100% the size of the screen. The border you are seeing will be the colour specified in the body tag.

Stefan

dtech10
09-10-2002, 01:30 PM
Hi
Even if I delete the bgcolor I still get the border the code displays a clock above the image.

AllGamer
09-10-2002, 01:37 PM
you can dissable the Border by setting everything to 0 zero

dtech10
09-10-2002, 05:52 PM
Originally posted by AllGamer
you can dissable the Border by setting everything to 0 zero

I'm a novice what do you mean by everything.
Thanks DTech10

ironik311
09-11-2002, 12:46 AM
Try using the border=0 command in the img tag. Like this:

HTML>
<HEAD>
<BODY BGCOLOR=#3A6EA5>
<IMG SRC=d:\Documents\Pictures\Ripple.jpg WIDTH=100% HEIGHT=100% border=0>
<SCRIPT language=JavaScript>
// Code
</SCRIPT>
</BODY>
</HTML>

That should get rid of it.

dtech10
09-11-2002, 10:27 AM
Thanks for everybodys help, the border as gone.