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

    Hi TEAM
    I have a WPCF7 form, and I want to change the 3 input boxes to a style with only one line below.
    And i try to add below code in css
    `input.wpcf7-form-control.wpcf7-text.wpcf7-validates-ad-required{
    border:none;
    border-bottom: 1px solid #000}`
    but is don’t work.

    #1347238

    Hey zemanchiu,

    Please try this CSS instead:

    .wpcf7-form-control-wrap.product-name, .wpcf7-form-control-wrap.MANUFACTURER, .wpcf7-form-control-wrap.QUANTITY {
        border: none;
        border-bottom: 1px solid #000;
    }

    Best regards,
    Rikard

    #1347242

    Hi Rikard
    It is didn‘t work.
    Is it directly added to the Quick CSS column?

    #1347255

    Hi,

    Please try this CSS instead:

    .wpcf7-form-control-wrap.product-name input, .wpcf7-form-control-wrap.MANUFACTURER input, .wpcf7-form-control-wrap.QUANTITY input {
        border: none;
        border-bottom: 1px solid #000;
    }

    Best regards,
    Rikard

    #1347257

    Hi Rikard
    Thanks for your help, but this code still doesn’t work….

    #1347265

    Hi,

    Try this instead:

    .wpcf7-form-control-wrap.product-name input, .wpcf7-form-control-wrap.MANUFACTURER input, .wpcf7-form-control-wrap.QUANTITY input {
        border: none !important;
        border-bottom: 1px solid #000 !important;
    }

    Best regards,
    Rikard

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