PDA

View Full Version : Netscape and IE discrepancies



Gsxxx600
October 7th, 2005, 12:43 PM
Its important to have both programs allow flawless html pages...but Im having one problem when viewing my page on netscape.

Any suggestions?
Ive tried to adjust the table width for the navigational bar, but no matter what size i try, I will still get the skinny bar on the right of Newsletter.

At first I though perhaps the Newsletter gif may actually have that verticle bar within the pic, but that is not the case either.

Thanks,
Jeremy

lankymart
October 7th, 2005, 03:18 PM
Its important to have both programs allow flawless html pages...but Im having one problem when viewing my page on netscape.

Any suggestions?
Ive tried to adjust the table width for the navigational bar, but no matter what size i try, I will still get the skinny bar on the right of Newsletter.

At first I though perhaps the Newsletter gif may actually have that verticle bar within the pic, but that is not the case either.

Thanks,
Jeremy

I've noticed your HTML is incorrectly formed...

Your anchor end tags are in the wrong position, the DIV tag can't end inside the anchor because the DIV starts before the anchor does...


<td>
<div class="button">
<a href="Home.html"> Home </div> <!-- DIV should end after anchor -->
</a> <!-- Anchor should end before the DIV does not here -->
</td>


Hope this helps! :thumb2:

Gsxxx600
October 7th, 2005, 04:10 PM
Thanks for the find!

Unfortuanately, it didnt help