Home Forums WoodMart support forum Change border color of contact form 7

Change border color of contact form 7

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

    JNKProductions
    Participant

    Hi,

    can I change the border color of my contact form on my homepage?
    Can’t find it.

    Also my button text color is not going white when I choose light skin. I have to customize it with css? I think something is going wrong. The left one I have customized.

    #324740

    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'],
    .wpcf7-form-control-wrap input[type='tel'],
    .wpcf7-form-control-wrap textarea { 
        border: 2px solid red;
    }
    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 2 posts - 1 through 2 (of 2 total)