Wie wird das Feld „Postleitzahl“ vor dem Feld „Stadt“ angezeigt?

  • Riedel_Thomas
    Gefragt am 4. Oktober 2024 um 05:54

    wie kann ich nach deutschem Standard die Postleitzahl vor der Stadt anzeigen lassen ?

    Wie wird das Feld „Postleitzahl“ vor dem Feld „Stadt“ angezeigt? Image 1 Screenshot 20

  • Gian_D Jotform Support
    Geantwortet am 4. Oktober 2024 um 08:30

    Hi Thomas,

    Thanks for reaching out to Jotform Support. Unfortunately, our German Support agents are busy helping other Jotform users at the moment. I'll try to help you in English using Google Translate, but you can reply in whichever language you feel comfortable using. Or, if you'd rather have support in German, let us know and we can have them do that. But, keep in mind that you'd have to wait until they're available again.

    As for your issue, you can use CSS code to swap the Postleitzahl and Stadt fields on your Address widget. Let me show you how to do it:

    1. Copy the CSS code below:

    /*To Swap Postleitzahl and Stadt*/
    .form-address-table {
      display: flex !important;
      flex-direction: column !important;
    }
    .form-address-line-wrapper:nth-child(3) {
      order: 4 !important;
    }
    /*Ends here*/

    2. In Form Builder, click on the Paint Roller icon on the upper right side of the page.

    Wie wird das Feld „Postleitzahl“ vor dem Feld „Stadt“ angezeigt? Image 1 Screenshot 30

    3. Click on the Styles tab.
    4. Paste the CSS code you've copied earlier inside Inject Custom CSS.

    Wie wird das Feld „Postleitzahl“ vor dem Feld „Stadt“ angezeigt? Image 2 Screenshot 41

    You can also clone my demo form to make things easier.

    That's it. Let us know if you have any other questions.