Guten Abend zusammen,
ich würde gerne in einem Kontaktformular zwei Formularfelder besonders gestalten (anderer Farb-Hintergrund, Schrift in bold).
Genauer gesagt geht es um den DATEPICKER, der im Formular bei mir an erster Stelle steht. Diesen möchte ich besonders hervorheben.
Ich habe im Quellcode ausgelesen dass die ID und NAME dieses Feldes avia_1_1 ist. Kann ich damit was anfangen?
Danke für die Hinweise im Voraus.
Hey mulder4301,
Thank you for the inquiry.
Ich habe im Quellcode ausgelesen dass die ID und NAME dieses Feldes avia_1_1 ist. Kann ich damit was anfangen?
Yes, you can use the ID or classname to adjust the style of specific fields in the contact form element. To adjust the style of the first field for example, you can use this css code.
#top form fieldset #element_avia_1_1 input {
background-color: #cc1818;
color: #ffffff;
}
Best regards,
Ismael
Thanks for a quick response.
Backgroundcolor worked perfectly.
But color does not show any effect.
is there a trick to handle it?
Hi,
Did you hide the field labels? If you want to change the color of the placeholder, you can add this css code.
::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: blue !important;
}
::-moz-placeholder {
/* Firefox 19+ */
color: blue;
}
:-ms-input-placeholder {
/* IE 10+ */
color: blue;
}
:-moz-placeholder {
/* Firefox 18- */
color: blue;
}
Best regards,
Ismael