Home Forums WoodMart support forum Contact Form 7 style

Contact Form 7 style

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #302767

    Laufer
    Participant

    Hi,
    Would you be so kind and write me css style for Contact Form 7 for the following:
    – line colour
    – field background colour;
    – field size;
    – label text colour
    – button colour
    – button shape
    – button text colour

    #302913

    Hello,

    Please try to configure that in the Theme Settings > Styles and colors, and then provide the page URL and I will provide custom CSS for the rest.

    Best Regards

    #303732

    Laufer
    Participant

    Here is it

    #303768

    Hello,

    Please clarify do you want to change the view or functionality?

    If you want to change the functionality you will have to search for an appropriate plugin. Our support does not cover customization of the third parties plugin, we can just give a CSS to make minor changes.

    Best Regards

    #303870

    Laufer
    Participant

    Hi,
    Yes please, only minnor changes as is
    – line colour
    – field background colour;
    – field size;
    – button colour
    – button shape
    – button text colour

    #304051

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    .wpcf7-form-control-wrap input[type='email'], 
    .wpcf7-form-control-wrap input[type='text'] {
        border: 2px solid red;
        border-radius: 20px;
        color: white;
        background-color: yellow;
        font-size: 20px;
        transition: border-color .5s ease;
    }
    body input[type="submit"]{
        font-size: 13px!important;
        background-color: red!important;
        color: white!important;
        border-color: transparent!important;
        border-radius: 20px!important;
    }

    Please replace the values and colors as per your needs.
    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)