Terms and conditions all of a sudden not in a scrolling window?

  • betwrestling
    Asked on January 6, 2017 at 3:57 PM

    So i have a terms and conditions text box on my form and have the following card to make it a scrolling window:

     

    '#termsx {

        overflow-y : scroll;

        height : 150px;

        width : 97%;

        border : 1px solid #DDD;

        padding : 10px;

    }'

     

    It has been working fine then all of a sudden yesterday when viewing the form i noticed it is no longer scrolling and is just a regular text box.

     

    What has happened and how do i fix this?

  • Kiran Support Team Lead
    Replied on January 6, 2017 at 6:23 PM

    It seems that the ID used in the code is different than the field's ID. Please replace the ID termsx with text_125 so that the terms should be displaying with scrolling.

    The CSS code should be as shown below:

    #text_125 {

        overflow-y : scroll;

        height : 150px;

        width : 97%;

        border : 1px solid #DDD;

        padding : 10px;

    }

    Terms and conditions all of a sudden not in a scrolling window? Image 1 Screenshot 20

    Hope this information helps! 

  • Braden Putt
    Replied on January 7, 2017 at 1:49 AM

    Thanks so much i really appreciate it :-)