How to span the images into two columns.

  • secretarybusa
    Asked on August 10, 2025 at 2:01 PM

    I had to change the page 1 layout.

    Again I need the shirt image to span two column toward the right.

    How to span the images into two columns Screenshot 20

  • Mark Alan JotForm Support
    Replied on August 10, 2025 at 3:03 PM

    Hi Pam,

    Thanks for reaching out to Jotform Support. To adjust the fields into two columns towards the right alignment, here's how:

    1. In Form Builder, click the Paint roller icon from the upper-right.

    How to span the images into two columns Screenshot 60

    2. In Form Designer, go to Advanced Designer at the bottom-left of the panel.

    How to span the images into two columns Screenshot 71

    3. In your Advanced Form Designer, go to Form Layout from the left navigation.

    4. Enable Form Columns, and adjust the Number of Columns to your desire.

    5. Next, go to Label Styles.

    How to span the images into two columns Screenshot 82

    6. In your Label Style, select the Right Alignment.

    7. Next, click the Disc icon from the upper-left corner to Save the changes.

    8. Then click the Jotform Logo next to the Disc icon to go back to your Form Builder.

    How to span the images into two columns Screenshot 93

    Note, any changes from the Advanced Form Designer will not be saved if the Disc icon is not selected before going back to Form Builder. You can insert another field next to your Image fields to write your product description. See the screenshot below for my results:

    How to span the images into two columns Screenshot 104

    Reach out again if you have any other questions.

  • secretarybusa
    Replied on August 10, 2025 at 3:57 PM

    I need to retain 3 column layout on page 3, that's why I wanted to adjust just the image on page 1.

  • Aries JotForm Support
    Replied on August 10, 2025 at 6:02 PM

    Hi Pam,

    Can you try to inject the custom CSS codes below into your form and adjust values if needed?

    /* Wrap hat and shirt in a flex row */
    #id_213, #id_214 {
        float: none !important;            /* Remove default float columns */
        display: inline-block !important/* Allow them to sit side by side */
        vertical-align: top;
        margin: 0 !important;
        padding: 0 10px !important;
    }
    /* Hat smaller */
    #id_213 {
        width: 30% !important;
    }
    /* Shirt bigger */
    #id_214 {
        width: 50% !important;
    }
    /*move shirt to the right*/
    #id_214 {
      position: relative;
      left: 40px !important
    }

    Here's how it looks after injecting the custom CSS codes:

    How to span the images into two columns Screenshot 20

    Give it a try and let us know if you need any more help.

  • secretarybusa
    Replied on August 10, 2025 at 6:52 PM

    Thanks, worked great!

Your Reply