Make grid report fonts slightly bigger

  • carlo66
    Asked on May 21, 2014 at 10:05 AM

    Also can I make the fonts on the grid report(log book) page slightly bigger. My users will opening it with a smart phone and their log entries look tiny. 

    Many thanks

  • Carina
    Replied on May 21, 2014 at 12:33 PM

    It is possible  by copying the report's source code and adding the following css as seen in the picture:

    Make grid report fonts slightly bigger Image 1 Screenshot 20

     

    .x-grid3-cell-inner{

                    white-space:normal !important;

                    overflow-y:auto !important;

                    max-height:100px;

    font-size:35px;

                }

     

    You only need to add the blue part of the code, inserted int the .x-grid3-cell-inner class next to the title tag. 

    To view and copy the source code of the report, open it in a browser window, right-click and choose view source. Then select all and copy it and edit it.

    You can test here the result:

    https://shots.jotform.com/carina/html/report_css.html

    Let us know if further support is needed.