Hi,
I would like to change the background color of the contact form. Can you guys give me a css for it?
Would you recommend Contact Form 7 (which I’ve always used)?
Best regards
Hey Nic_007,
Thank you for the inquiry.
Are you trying to change the background of the whole contact form or just the input fields? You can try this css code to change the background color of the contact form itself.
#top form {
background-color: crimson;
}
To change the color of the input fields, use this instead.
#top .alternate_color .input-text, #top .alternate_color input[type='text'], #top .alternate_color input[type='input'], #top .alternate_color input[type='password'], #top .alternate_color input[type='email'], #top .alternate_color input[type='number'], #top .alternate_color input[type='url'], #top .alternate_color input[type='tel'], #top .alternate_color input[type='search'], #top .alternate_color textarea, #top .alternate_color select {
border-color: red;
background-color: purple;
color: aqua;
}
The labels can be adjusted using this css.
#top label {
color: azure;
}
Best regards,
Ismael