Hi,
You've got some spelling issues..
This section of the layout isn't too difficult - Something like this should work
Code:
<div id="footer">
<div class="first">Put Heading and list</div>
<div class="second">Put Heading and list</div>
<div class="third">Put Heading and Paragraphs</div>
<div class="bottom">Put Paragraph</div>
</div>
Code:
#footer .first{ width: 300px; float: left }
#footer .second { width: 200px; float: left }
#footer .third { width: 400px; float: left }
#footer .bottom{ clear: left }
Float everything, give them widths(fixed as your layout is fixed) and clear the last element. Of course the width's will have to account for the padding/margin on the elements also.
Hope it helps
Bookmarks