Transparent background in WonderForm

I would like to be able ot have wonderform blend in with whatever background i have. Also select padding etc. More styling options. If custom CSS is possible, please advice on the best practices.

For the transparent background you can just add two 00 at the end for the Widget Background setting and it will make it transparent.

As for other styles like padding, you can use something like this in custom css:

.v {
padding: 20px;
}

Let me know if you need help with anything else.

Do you know if there’s a fix for the input text being dark no matter what? so if you have a dark background you can barely see the text you are writing in the answer box.

Yes you can change the text color of the input like this:

.dz input { color: #ffffff; }