Hi,
I’m trying to make the borders of the contact form at the bottom of my website a bit smaller.
Tryed this code, but does not seem to work:
#top div .av-light-form .input-text, #top div .av-light-form input[type=”text”], #top div .av-light-form input[type=”input”], #top div .av-light-form input[type=”password”], #top div .av-light-form input[type=”email”], #top div .av-light-form input[type=”number”], #top div .av-light-form input[type=”url”], #top div .av-light-form input[type=”tel”], #top div .av-light-form input[type=”search”], #top div .av-light-form textarea, #top div .av-light-form select, div .av-light-form .button {
border-width: 2px !important;
}
Thanks
Hi cberentz!
Thank you for coming back.
Use the following and adjust as needed:
#top div .av-dark-form .input-text, #top div .av-dark-form input[type="text"], #top div .av-dark-form input[type="input"], #top div .av-dark-form input[type="password"], #top div .av-dark-form input[type="email"], #top div .av-dark-form input[type="number"], #top div .av-dark-form input[type="url"], #top div .av-dark-form input[type="tel"], #top div .av-dark-form input[type="search"], #top div .av-dark-form textarea, #top div .av-dark-form select, div div .av-dark-form .button {
border-width: 1px !important;
}
To use the code above more flexible you can remove “.av-dark-form”.
2 px is the default border width used with this element.
Best regards,
Günter
Works, thanks a lot!
While were at it: Do you have an Ideo how to remove the thin white line between the footer and the picture that holds the contact form?
Hi!
Use the following:
.home #footer.container_wrap {
border-top: 0px !important;
}
Best regards,
Günter
Funktioniert! Danke für die schnelle Antwort Günter!