Greg
Greg

Reputation: 3063

Form not hidden on page load

On my site http://purewords.com/site16/ if you scroll down to the bottom of the page you will see the contact form that is supposed to be hidden. However if you click on "contact" in the menu then on the cross to close the pop-up box, then the form does no longer appear at the bottom. How can I make the form invisible on page loading? Many thanks,

Upvotes: 2

Views: 106

Answers (1)

Michael Robinson
Michael Robinson

Reputation: 29498

Make the contact form's wrapper display:none

#inline {
    display: none;
}

Also, your form is broken, having two closing form tags:

    <button id="send">Send E-mail</button></form>
</form>

Upvotes: 3

Related Questions