Footer won't budge
see the example..the footer won't stay at bottom/
EDIT Tried to remove clearfix but it is not pushing the footer to the bottom or eliminates the white gap below the footer. Clearfix: display block is done via the Pinnaclecart itself. Even if I tried to remove display:block, the footer will be in mess. For an example, it will 开发者_如何学编程move footer items to the left outside of the page where the products are laid out.
any insight will be appreciated!
I think you might want to add the following to your #footer section in the css file:
position:fixed;
bottom:100px; /* 100 being the assumed footer height, you'll need to do the math :) */
(also, it'd be kind to spend a little more time on your problem description)
精彩评论