Subin Chalil
Subin Chalil

Reputation: 3660

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?

Upvotes: 0

Views: 155

Answers (1)

Radhika Sekar
Radhika Sekar

Reputation: 36

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
}

Upvotes: 2

Related Questions