Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1375976

    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

    #1376018

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.