Auf Mobilgeräten wird das Formular in der Mitte komprimiert

  • Hro1983
    Gefragt am 23. Januar 2025 um 08:24

    Hallo Jotform Team,

    ich bin bei der Arbeit an meinem Fomular "Fahrzeugwechselcheck" in der erweiterten Designoberfläche gewesen und habe die Ansicht der Auswahlbutton geändert. Nach dem speichern hat sich die Formularansicht des Inhaltes auf dem Smartphone etwas verkleinert, so dass sich der Text zusammenschiebt. Was kann das sein?

    Viele Grüße

    Sebastian Peters

    Jotform Thread 23346203 Screenshot
  • Sonnyfer Jotform Support
    Geantwortet am 24. Januar 2025 um 03:37

    Hi Sebastian,

    Thanks for reaching out to Jotform Support. Our German Support agents are busy helping other Jotform users right now, so 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, it might take a while until they're available again.

    Now, coming back to your question, I understand you want to expand your form to the size of the mobile screen instead of being compressed in the center. You can do it by Injecting CSS Codes into your form. Let me walk you through it:

    1. First, copy this code:

    @media screen and (max-width: 480px) {
        ul.form-section {
            padding: 0px 0px;
        }
    }

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

    3. Now, in the Form Designer menu, click on the Styles tab, scroll down and paste the code into the Inject CSS Code box. That’s it. The code is automatically saved.

    Auf Mobilgeräten wird das Formular in der Mitte komprimiert Image 1 Screenshot 30

    That's it. Here's a link to my demo form that you can clone, and below is what it looks like afterward:

    Auf Mobilgeräten wird das Formular in der Mitte komprimiert Image 2 Screenshot 41

    Give it a try and let us know how it goes.

  • Hro1983
    Geantwortet am 24. Januar 2025 um 03:42

    Great :-) That's it! Thank you very much!