treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] why can't I click on my form?

  • There are certain parts of the form that I cant click and access the form. What did I do wrong? here's the link to the site: http://www.skaysattorney.com/court/

  • Offhand I would say it's because you have elements in your HTML that are larger than the form and after it in your HTML.

    As such, they are lying over the top of the form and so you can't click on it.

    The simple solution is to add:

      position:relative;
      z-index:2;
    

    to your #contactForm

    The better solution would be to restructure your HMTL /CSS as it looks like there are a number of 'elements' that don't exist in HMTL like 'content', 'contenthead' & 'contenttrailer'.

    I could go on...there are many more...but you get the point.

  • Damn he beat me to it!

    Basically your page title is covering it up.

  • thanks guys!