Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1432319

    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.

    #1432337

    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

    #1432358

    Thanks for a quick response.
    Backgroundcolor worked perfectly.
    But color does not show any effect.
    is there a trick to handle it?

    #1432365

    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

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