Search code examples
htmlcsshyperlinkz-index

Links not clickable?


I'm making a simple launchpage for class, but now some of my links aren't clickable. The Home link is fine,but all the other links won't respond to a click or hover.

See the live page here.


Solution

  • In your css, do this:

    nav {
        z-index: 1; //this line matters
        margin-top: -10px;
        clear: both;
        position: relative;
        display: inline-block;
        margin-bottom: 50px;
    }
    

    Not sure why you have a -10 there