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.
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
Hi Rikard
It is didn‘t work.
Is it directly added to the Quick CSS column?
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
Hi Rikard
Thanks for your help, but this code still doesn’t work….