Hi @timoji,
I’m so glad you’ve been enjoying using our plugin!
For custom styling, I’d recommend starting with our Beginner’s Guide to CSS.
That will give you tons of helpful tips, as well as all the background you’d need to start in on extra customizations. For example, here’s a basic CSS snippet for adding a form background image:
.wpforms-form {
background: url("https://imagelink.com");
padding: 20px 15px;
}
You’d just need to add this snippet to your site, and change that example URL to the actual link for your image.
Last, you might find that your image doesn’t fit exactly how you’d like — this is what makes images much tricker than simple colors. But if you check out this guide from W3Schools, it covers tons of details on how to adjust the background image further.
I do want to mention that I’d generally recommend adding an image to the page/post background, then keeping the form background very simple (letting the text be as easy to read as possible).
But either way, hopefully these details give you a better idea of how to add background images! ??