Images Checkboxes Widget: Why some images at the bottom are not being displayed?

  • Nzia
    Asked on May 3, 2016 at 11:30 PM

    I've just noticed that sometimes the images are missing below the fold line.

    And despite the fact that I've changed .myjotform.com' to 'instanzia.com', the form still opens revealing:

    https://form.myjotform.com/61234819807561

    in the browser

  • Kevin Support Team Lead
    Replied on May 3, 2016 at 11:48 PM

    I think this is because you have added some custom CSS to change the layout of the fields in the widget and then the height is not being set properly although you have added this CSS code to change the height of the widget: 

    iframe#customFieldFrame_34 {

        margin-left : 0px;

        margin-top : 0px;

        height : 2600px!important;

    }

    This is not the ID of the iFrame where the widget is being loaded, instead of using that code try using this one: 

    iframe#customFieldFrame_3 {

        margin-left : 0px;

        margin-top : 0px;

        height : 2600px!important;

    }

    You may easily get the correct id of the widget by left clicking on the element of the widget and then clicking on the option inspect element: 

    Images Checkboxes Widget: Why some images at the bottom are not being displayed?  Image 1 Screenshot 30

    Once there you will be able to get the correct ID of the element: 

    Images Checkboxes Widget: Why some images at the bottom are not being displayed?  Image 2 Screenshot 41

    Here is my cloned form where I did applied the same CSS code and it is showing all the images now: https://jotform.com/61238646707966

    Hope this helps. 

     

  • Nzia
    Replied on May 8, 2016 at 3:17 AM

    Thanks Ken_G. You guys know your 'stuff'.

    Nzia