Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS why can’t I click on my form?

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #40369
    djrolstad
    Participant

    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/

    #112209
    Paulie_D
    Member

    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.

    #112210
    MickeyB
    Member

    Damn he beat me to it!

    Basically your page title is covering it up.

    #112207
    djrolstad
    Participant

    thanks guys!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.