Could someone help me with an annoying error?
I want to change the form input fields to transparent background, keeping only the solid line under the field in Themify Bulider with Contact form 7. When I add the custom CSS shown bellow, it still keeps me with the white input boxes, as you can see from: www.creedo.ee.
.wpcf7 input[type=text]{
border: none;
box-shadow: none;
border-radius: 0;
border-bottom: 1px solid #999;
background-color: none;
}
Any suggestions? Thank you!
try the following:
.mdc-text-field {
background-color: transparent !important;
}