Search code examples
jasper-reportsjasperserver

JasperReports Server: Background color for the screen on which the reports are displayed


How to change the background color for the whole screen (window) on which the report is displayed at JasperReports Server rather than changing the background color for the report with JasperReports?


Solution

  • For changing the color of the Entire Window you can edit the CSS file in the jasperserver/themes like this

    #reportViewFrame .content .body{
            background:#f6f6f6; //any color you want
    }
    
    .jrPage > tbody {
        background: none repeat scroll 0 0 #f6f6f6; // any color you want
    }