Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Overlapping graphic

Status
Not open for further replies.

rry2k

Programmer
Jun 28, 2001
678
US
I am helping someone build a website and they have done all the artwork and original page design in publisher. I am having a problem with the graphics. There is an animated gif with a lighthouse that blinks. When a color is applied to the background it applies like a graphic over the top of everything and kills the animated effect of the lighthouse when I preview/save as a webpage. Is there anyway to fix this?

Thanks alot for the help,
Russ
 
can u give me the link here so that i can check it out?

Known is handfull, Unknown is worldfull
 
Here's the code:


<!doctype html public &quot;-//IETF//DTD HTML 2.0//EN&quot;>
<html>
<head>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
<meta name=&quot;Generator&quot; content=&quot;Microsoft Publisher 2000&quot;>
<title>Life Changing Ministries</title>
</head>
<body bgcolor=&quot;#ffdbb8&quot; background=&quot;back.gif&quot; link=&quot;#0066ff&quot; vlink=&quot;#800000&quot; text=&quot;#000000&quot; topmargin=0 leftmargin=0>
<a name=top></a>

<table border=0 cellpadding=0 cellspacing=0>
<tr>
<td><img src=&quot;_blnk.gif&quot; width=9 height=1></td>
<td><img src=&quot;_blnk.gif&quot; width=768 height=1></td>
</tr>
<tr>
<td width=9 height=480></td>
<td width=768 height=480 colspan=1 rowspan=1 valign=top align=left>
<map name=&quot;map520&quot;>
<area shape=&quot;rect&quot; coords=&quot;6,0,754,20&quot;>
<area shape=&quot;rect&quot; coords=&quot;105,428,141,470&quot;>
<area shape=&quot;rect&quot; coords=&quot;303,428,339,470&quot;>
<area shape=&quot;rect&quot; coords=&quot;534,428,570,470&quot;>
<area shape=&quot;rect&quot; coords=&quot;533,256,586,279&quot; href=&quot;page2.html&quot;>
<area shape=&quot;rect&quot; coords=&quot;439,286,571,306&quot; href=&quot;page3.html&quot;>
<area shape=&quot;rect&quot; coords=&quot;666,426,744,470&quot; href=&quot;<area shape=&quot;rect&quot; coords=&quot;6,414,749,423&quot;>
<area shape=&quot;rect&quot; coords=&quot;6,30,555,66&quot;>
<area shape=&quot;rect&quot; coords=&quot;6,66,557,144&quot;>
<area shape=&quot;rect&quot; coords=&quot;0,0,768,480&quot;>
</map>
<img width=768 height=480 border=0 src=&quot;imgtest.gif&quot;> usemap=&quot;#map520&quot;</td>

</tr>

</table>

<a name=bottom></a>
</body>
</html>
 
please use absolute paht when giving the gif, i am unable to view the picture....

Known is handfull, Unknown is worldfull
 
well for starters:

<img width=768 height=480 border=0 src=&quot;imgtest.gif&quot;> usemap=&quot;#map520&quot;</td>

should be:

<img width=768 height=480 border=0 src=&quot;imgtest.gif&quot; usemap=&quot;#map520&quot;></td>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top