im looking deeply in the code...it seems you already fixed the bug. Howeaver i think you can still improve it a bit
1. put everything in page inside a "container" DIV. A typical tableless structure could be:
Code:
<body>
<div id="container">
<div id="header"></div>
<div id="leftmenu"></div>
<div id="content"></div>
<div id="footer"></div>
</div>
</body>
this way you can set leftmenu and content's positions making them float
then footer will clean the float status
another plus is to have everything in page semantically splitted in "indicizer" DIVs.
2. your code:
Code:
<div id="topNAV">
<a href="/Galleries/Seattle.html"><img src="../GraphicElements/TrainPageHeader.png" alt="Forrest Croce; Fine Art Photography" border="0" /></a>
<a href="/Galleries/All.html"><img src="/GraphicElements/PageHeader.png" alt="Forrest Croce; Fine Art Photography" width="719" height="106" border="0" /></a>
</div>
could be improved CSS-positioning images:
for example, using this CSS rule:
[code]
#topNAV img{
border:0;
display:block;
float:left;
margin-left: 10px;
}
in this way you can set spacing between IMGs and, consequentially, set the position of the banner
3. dont user align="" attributes on P and DIV, but instead make a CSS rule with text-align for them!
ciao!
__________________
Gabrio "TheClue"
Please login or register to view this content. Registration is FREE
|