First, remove anything above the
DTD as it throws browser into quirksmode.
Secondly, you applied it wrongly, let me take for instance this part:
Code:
<table width="200" height: expression(20 + "px"); class="nav" align="center" cellpadding="0px" cellspacing="0px">
Highlighted should be:
Code:
style="height: expression(20 + "px");"
You've got a lot
deprecated attributes which gives me the instinct to throw your page to the validator
and see
your HTML error as well as
your CSS error
And as a parting thought,
tables was'nt intended for layouts
Hope it keeps you going.
