項目の間隔をなくしたい

  • hyperx
    2024年10月15日 7:35に質問
  • Jill Enterprise Support
    2024年10月15日 11:09に返信

    Hello hyperx,

    Thanks for reaching out to Jotform Support. Unfortunately, our Japanese 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 Japanese, 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.

    To adjust the spacing between the Terms & Conditions widgets, you will need to inject Custom CSS to your form. Let me show you how:

    1. In your Form Builder, click on the Paint Roller icon on the right side of the page. 項目の間隔をなくしたい Image 1 Screenshot 40
    2. Go to the Styles tab and insert code in the Inject Custom CSS box.項目の間隔をなくしたい Image 2 Screenshot 51

    In that box, inject this custom CSS, which will shrink the space between the widgets:

    #id_84, #id_94, #id_95, #id_19 {
      padding-top : 0;
      padding-bottom : 0;
      margin-top : 0;
      margin-bottom : 0;
    }

    #customFieldFrame_84 {
      height: 30px !important;
    }

    #customFieldFrame_94 {
      height: 70px !important;
    }

    #customFieldFrame_95 {
      height: 30px !important;
    }

    And that's it. This is how it looks after the custom CSS has been added:

    項目の間隔をなくしたい Image 3 Screenshot 62

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