Footer Links Won't Stay Inside Sticky Footer

I have a unordered list for a footer navigation menu that is not showing up at all. I think it may have something to do with a sticky footer that I am trying to add. Can someone help me out?

LINK-
http://www.securehostserver.info/rvf/

I just noticed that the background image had about 50 or so pixels of white on the top so that visually made it look like it was being pushed further than it should have been.

I have added your fixes and I now have a new issue. I have added anchor tags to the footer navigation but you are unable to click on them. I think it is because of the div #push. Can you tell me what CSS fix would make this work? Z-index?

Thanks! Now if I could just figure out how to get them inside the sticky footer instead of on top of it. Do you know how?

Yup the push container is the problem. Position:relative can fix this :wink:

.footer-container{position:relative;}

The links are not appearing at all because of the text-indent. When you get rid of that, they will appear at the very top of the footer DIV.


#footer-nav li a, #footer-nav li a:link,  #footer-nav li a:visited {
color:#333333;
display:block;
height:39px;
line-height:39px;
text-decoration:none;
/* text-indent:-9999px; REMOVE */



}

This is probably because you copied this from somewhere where they were using images, which is what this text-indent trick is normally used for, so that there is still text in the link (for search engines and accessibility purposes).

They are in it, it’s just that the footer DIV is very tall and its background image has a huge white area at the top. You don’t even need the background image. Just give the DIV the blue background and a nice thick grey border-top.