Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #876355

    Fedde
    Participant

    Hi there,

    I have 3 questions about customizing my contact form. URL= http://binksonlinemarketing.nl/

    1: How can i make the font size larger regarding to “Uw naam” “Uw e-mailadres” “onderwerp” “uw bericht”?
    2: how do i reduce the width of the first 4 boxes, and keep them centered? The last box is perfect.

    Thanks in advance,

    Fedde Westera

    #876762

    Jade
    Moderator

    Hi Fedde,

    You can add this under Custom > CSS in the Customizer.

    .wpcf7 .wpcf7-form p {
        font-size: 17px;
    }
    
    .wpcf7 .wpcf7-form p {
        width: 60%;
        margin: 0 auto;
    }
    
    .wpcf7 .wpcf7-form p:nth-child(6) {
        width: 100%;
    }

    Hope this helps.