Changing the background color of a WP Forms page

I’m relatively new to using Bricks Builder.

The website has a black background. I created a form using WP Form builder, but when its active on the site you cant read the titles because the leters are all in black too. I cannot figure out how to make the lettering white, or the background for the form white. Help

Hi,
Welcome to the forum!

Depending on how you added the form (probably with a shortcode), either add styles to it’s wrapper or inspect the HTML on the frontend, copy the wrapper ID or class and add it to the page settings » custom code » custom css.

For example, if the form wrapper is “.wpforms-container”:

.wpforms-container {
  background-color: red;
}