Form fields not clickable on site when opened on desktop?

0

link

I have a form of contact form that uses JS to validate and PHP to send the data, however in that site the link is above, the form is not clickable when opened on the desktop (in mobile it works normally). I've circled all html and did not find what it could be. Could someone help me by pointing out where the source of the problem would be?

Thank you in advance

    
asked by anonymous 07.08.2017 / 18:35

2 answers

1

Take the position: relative of the <p> tag in your CSS that solves the problem. Staying like this:

p{
    line-height:1.8em;
    font-family: 'Hind', sans-serif;
}
    
07.08.2017 / 18:46
0

Problem is that the div with class " well " is appearing above the div that contains the button. It's easy to check this by using the F12 command in your browser to check the placement of the elements on the page.

Follow print:

    
07.08.2017 / 18:40