> Hi,
>
[quoted text clipped - 60 lines]
> </body>
> </html>
Is there a reason why you can't use floats? That would seem to be the
easiest way to me:
<style type="text/css">
#mainContentArea{
float:left;
border:solid 3px red;
}
#sidecolumn{
float:left;
border:solid 3px blue;
width:200px;
}
</style>
You still have a lot of positioning options using margins. Hope that helps.
j
alun65@gmail.com - 26 Jul 2007 18:44 GMT
> alu...@gmail.com wrote:
> > Hi,
[quoted text clipped - 80 lines]
> You still have a lot of positioning options using margins. Hope that helps.
> j
Hi Jason,
I think your right, floats is the way to go. The reason I was using
absolute positioning is that this enables me to put the navigation
section right down the bottom of the HTML page, so when the page get
spidered it will hit the content section first instead of the
navigation, this should help for SEO (although this it may only give a
slight improvement, who knows only the Google engineers probably).
Anyway I think the simplest way is always the way to go in CSS. Any
thanks for the reply Jason I will use floats instead.
Alun