Hey guys.. please help me to make fixed background,and footer and scrollable content like this site : http://envato.com/ HTML:
If you take a look at Envato site's code with any of the developer tools available on Firefix, Chrome, Safari you'll see it has: body { background: #528036 url(images/background.jpg) no-repeat fixed 0 0; } HTML: And the bottom fixed footer has: #footer_wrap { position: fixed; bottom: 0; height: 47px; width: 100%; background: #1b1b1b url(images/footer-bg.jpg) no-repeat 0 0; border-top: 1px solid #749e58; z-index: 99; } HTML: That takes care of the fixed body background image & fixed bottom bar. And for scrolling from point to point they are using jQuery scroll function.