Element Widths are not respected on mobile;

  • livro.ca
    Asked on November 27, 2017 at 4:54 PM

    On PC I have no trouble with specified width; however on mobile it always displays full width rather than the specified pixel width, please see below (I specified 200px for each of these fields yet it's larger and never changes no matter what I put into the fields' width setting)

    Also it's important that the orderable list is narrower for mobile, so the user can scroll without so easily affecting the orderable list sorting.

    Jotform Thread 1308317 Screenshot
  • lumiardian
    Replied on November 27, 2017 at 7:41 PM

    You can inject this CSS Code to permanently make the width to 200px.


    ul#iCheckList li {

        width: 200px !important;

        margin: 0 auto !important;

    }

    #sortableList {

        width: 200px !important;

        margin: 0 auto !important;

    }

    On this link you will find on how to inject Custom CSS Code.