Hi.,
I hope you want fixed menu if yes try this code
#footer-nav {
display: block;
position: fixed;
bottom: 0;
background: #000;
width: 100%;
}
#footer-nav ul {
list-style: outside none none;
margin: 0;
padding: 0;
}
#footer-nav ul li {
display: inline-block;
margin: 0;
padding: 0;
position: relative;
}
Thank you for your quick reply but that isn’t what I needed. Perhaps a sticky menu is a better term? Right now if I don’t add padding to my content the footer will ride up the page until it gets to the end of the content instead of remaining at the bottom of the page. I would like it to be at the bottom no matter how much content I have on the page. I would also like it to float on top of the content so it is always visible.