form-7 is not working on page

form-7 is not working on normal page.

Can you please provide live website preview with this issue?

From the screenshot it seems like indeed there is no styling for the contact form outside of the homepage, so I will need to track this down and push it to be implemented in a future update.

Sorry for the trouble.

Regards

Sorry, i forgot.

Thanks!

Thanks for the update (1.0.33), only the textarea attribute is nog working yet, can you fix that?
www.werkgroepzegveld.nl/contact

Can you please let me know via extra details and preferable screenshots what do you mean by the textarea attribute is not working yet?

Thank you!

Here the extra info: (see attachments).

Hello,

Please try this CSS solution to make the textarea full-width:

textarea{     
    display: block;
    width: 100%;
}

Let me know if the above did the trick.

Regards

textarea, input {
    border: 1px solid rgb(169, 169, 169);
    color: #888;
    display: block;
    font-family: "Source Sans Pro",sans-serif;
    font-weight: 400;
    outline: 0 none;
    padding: 10px;
    resize: none;
    width: 100%;
}

this one did the trick for me.

That’s great, thank you for the heads up!