WPForms - text field header colour

Whilst I realise add-on support is provider specific, some setting in PRO seems to be overriding a custom css line I need to add to change the text colour of my forms’ field header. I wonder if there’s any way to discover which setting is taking precedent and how to override it?
I’ve tried all three wpform styling option; no styling, base styling and base and form theme styling, none makes any difference whatever to the text field header colour, despite adding various forms of the following to the page custom css or to global css;

.wpforms-container-full .wpforms-form .wpforms-field-label {
    font: #f7f8ca
}

I’d also like to switch out the background colour of the fields themselves from white to the above colour too but am wondering what I’m doing wrong. Is the above css complete?

Site is still in production and not live yet.

TIA

Hello @Cosawes,

Thanks for writing in!

Your code did not work because it is incorrect.
Please use this instead:

.wpforms-container-full .wpforms-form .wpforms-field-label {
    color: #f7f8ca;
    background-color: #eee;
}

Feel free to change the color and background colors.

We would love to know if this has worked for you. Thank you.

Very many thanks.

Doh, yes that would be the reason then :blush:

It will only work though when wpforms styling setting is on “Base and form theme styling” and then I loose my global ‘submit’ button styling. Is there a simple way to retain it?
TIA

Hi @Cosawes,

Please be reminded that we do not really provide support for 3rd party plugins. Please contact the plugin author on how to style the contact button instead.

You can also formulate your own custom CSS, you can find the proper CSS code selector using the Chrome browser Developer Toolbar
For the CSS code itself, I suggest that you get started with this tutorial

Thank you for understanding,

Indeed, I realise that. Just thought if someone recognised the issue and could suggest a quick solution as it’s clearly an issue which is tied up with style sheet conflicts/preferences between the add-on and PRO.
Never mind! Thanks anyway.

You’re welcome, @Cosawes.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.