Reputation: 145
On my site, pages where I have added links to the footer (like http://msdhosting.tk/signup/) but when I move over them and try to click them, they don't appear to be links and they don't go anywhere.
Any ideas?
Upvotes: 1
Views: 2343
Reputation: 40673
You gave your footer a z-index of -9999. That appears to be placing your footer behind other elements on the page.
Upvotes: 1
Reputation: 29168
Your #footer
has z-index:-9999;
which positions it behind the <body>
.
When you try to click links in the footer, you're actually clicking the <body>
and not the links under it.
I suggest removing the z-index
definition from #footer
.
If there is a reason you need the footer behind something else, try moving the other element up with a positive z-index
rather than moving #footer
back with a negative one.
Upvotes: 7