Hello, I was having a issue with my footer not sticking to the bottom of my page so I edited my css and now it's fine but for some reason I'm getting an enormous amount of space now between the footer and page content (on all pages) my site is http://www.barefootwebsit.es also here is the code that made the footer rest on the bottom. Did I do something wrong in the css?
html, body, #page-wrap { height: 100%; }
body > #page-wrap { height: auto; min-height: 100%; }
#content { padding-bottom: 317px; } /* must be same height as the footer */
#footer { position: relative; margin-top: -317px; /* negative value of footer height */ height: 317px; clear:both; }