Gravity Forms issue

I’m working on a site that has a background image on the whole page.
I just dropped a gravity form on a page, and the fields are not visible.
They are there you can click on to enter the fields but there is no styling to indicate where they are.
This is with the new beta theme!
Thanks, Dave

Hey Dave,

I was able to replicate the problem even with our own Subscribe module! The reason for this is the forms inherit the background color from the content. Since you’re setting the content background to transparent, the background was also set to transparent. Same thing is happening on the latest version but you can’t set the content background to transparent there. You can use this CSS snippet to override that until we fix it.

body .fl-page input[type=text], body .fl-page input[type=password], body .fl-page input[type=email], body .fl-page input[type=tel], body .fl-page input[type=date], body .fl-page input[type=month], body .fl-page input[type=week], body .fl-page input[type=time], body .fl-page input[type=number], body .fl-page input[type=search], body .fl-page textarea {
  background: #FFF;
}

Edit: Added another class for stronger specificity.

Ben

Thanks Ben,
That all makes perfect sense - I will try out your solution & get back to you…
Regards, Dave

Hey Dave,

I’ve already issued a bug report for this.

Ben