OK... in process of developing a page. I have nested tables. In these nested tables are a few images. The Code:
The problem is that, when I preview it in Dreamweaver, everything works fine. But when I publish or view it independently from DW (double-clicking the HTML on the hard drive and opening in IE), the nav_header, nav_footer, and nav_divline images do not show up, and instead there are just blanks.
Any help appreciated...
Examples:
I want it to look like the side navigation shown on this site (dont shy away just because its 2a):
Code:
<body bgcolor="2C2C39" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0"> <table width="192" border="0" cellpadding="0" cellspacing="0"> <tr> <td><img src="/images/sidenav/nav_header.gif" width="192" height="6"></td> </tr> <tr> <td background="/images/sidenav/nav_bg.gif"> <div><A HREF="challenge2004.htm" ONMOUSEOVER="changeImages('nav_challenge2004', 'images/sidenav/about/navmain_challenge2004-on.gif'); return true;" ONMOUSEOUT="changeImages('nav_challenge2004', 'images/sidenav/about/navmain_challenge2004-off.gif'); return true;"> <IMG NAME="nav_challenge2004" SRC="images/sidenav/about/navmain_challenge2004-off.gif" WIDTH=192 HEIGHT=24 BORDER=0 ALT=""></A> </div> <div><img src="/images/sidenav/nav_divline.gif" width="192" height="2" border="0"></div> <A HREF="resources.htm" ONMOUSEOVER="changeImages('nav_resources', 'images/sidenav/about/navmain_resources-on.gif'); return true;" ONMOUSEOUT="changeImages('nav_resources', 'images/sidenav/about/navmain_resources-off.gif'); return true;"> <IMG NAME="nav_resources" SRC="images/sidenav/about/navmain_resources-off.gif" WIDTH=192 HEIGHT=24 BORDER=0 ALT=""></A> <div><img src="/images/sidenav/nav_divline.gif" width="192" height="2" border="0"></div> <A HREF="links.htm" ONMOUSEOVER="changeImages('nav_links', 'images/sidenav/about/navmain_links-on.gif'); return true;" ONMOUSEOUT="changeImages('nav_links', 'images/sidenav/about/navmain_links-off.gif'); return true;"> <IMG NAME="nav_links" SRC="images/sidenav/about/navmain_links-off.gif" WIDTH=192 HEIGHT=24 BORDER=0 ALT=""></A> </td> </tr> <tr> <td><img src="/images/sidenav/nav_footer.gif" width="192" height="6"></td> </tr> </table> </body>
Any help appreciated...
Examples:
I want it to look like the side navigation shown on this site (dont shy away just because its 2a):
Comment