Actually our DIV’s are not OK,
you need to set up a ‘content’ div and within two separate div’s like: entries and sidebar >>
<div id=”content”>
<div id=”entry”>
</div>
<div id=”sidebar”>
</div>
</div>
and then with CSS >>>
#content {width:800px; clear:both;}
#entry {width:600px; float:left;}
#sidebar{width:200px; float:right;}
Thank you very much for your help.
I now see where i went wrong and have fixed it!
Many thanks.