Can someone help me identify why I can’t click on my submit button/text box? I was told it has something to do with the z-index but when I changed it on css nothing has happened. Thank you!
I can click it, what makes you say it isn’t clickable?
It looks like the navbar is sometimes overlapping other elements, hence making these elements unclickable. I suggest experimenting with that
Hey @iangoodman!
The reason why you are experiencing issues is not because of the z-index but because there are a lot errors in your html. If you run your code through the html analyzer then you will see the issues that you need to fix.
For the submit button and text input you should place those in a form element. You also have an email label with no input inside of it . You should place the email input inside of the label.
Once you fix the errors on the html page you should see all of your buttons and input fields starting to work.
Also if this is one of the FCC projects then you should include the test suite.
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
Hope that helps!