Contact Us colour change showing in customize but not on live site

hi all,

I am having an issue with the contact us part of the website.

I have changed the colours as attached me colors.

but on the live site - www.ezpzit.com.au it is showing as the default background this is attached as nocolor.

please let me know if you need any more information.

appreciate your assistance.

Hi @ezpzit,

Thanks for reaching out to us, hmm seems like a simple css will do it for this task.

Here are the steps as to how to do so.

Go to Appearance -> Customize -> Additional CSS and add the code.

.contact-us{
background-color: #000000;
}

Where the #000000; is the Hex code for the color black, if you want to set it to white that code will be #FFFFF;

Let me know if this works,

Kind Regards,
Support

Hi Support,

The color still doesn’t change with this code.

You can access it from here:

www.ezpzit.com.au/wp-admin
username: colorlib
password: Colorlib123!

Please let me know if you need more information.

thanks,

Thanks. This worked perfectly.
How do I change the contact form field colors?

section#contact-us .section-content .wpcf7-form p .wpcf7-text,
#contact-us .section-content .wpcf7-form p .wpcf7-textarea {
	background-color: PUT YOUR COLOR HERE;
	border: 1px solid PUT YOUR BORDER COLOR HERE;
}

Thanks, that worked!