Hello I am writing a site using Aptana Studio 3 I at this stage have 1 <div> for content one <nav> for site navigation and one <footer> containing a simple copyright.
I am currently experimenting with
float:left;
float:right;
This has caused my <footer> to jump to the very top of the page and it won’t leave, please help me find a solution which doesn’t involve position:absolute; or failing that a way for the absolute position to be centred.
You have to wrap your
<nav>and content<div>in a wrapper and add a CSS rule to wrapperoverflow: hidden– http://jsfiddle.net/7kpuH/UPDATE: for the footer that sticks to the very bottom of the page you might want to loo here – Problems with CSS sticky footer
CSS