Wednesday, August 4, 2010

SSRS Fix for FireFox/Chrome Report Size

If you have ever used Chrome or FireFox with SSRS, you know the report window can show up very small. This is due to the way that SSRS implements the IFRAME.

A quick fix for this is to add the following entry to the ReportingServices.css file.
.DocMapAndReportFrame
{
min-height: 800px;
min-width: 800px;
}
You can usually find the ReportingServices.css file at: C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\ReportManager\Styles, however your location may be different depending on your installation.

peace

7 comments:

Paul said...

Thanks!

Paul said...

Thanks!

Jose said...

Does it matter where you put it in the file, beginning, middle, end, after this or that?

frankfast said...

Worked like a charm. Thanks! (this is not a spam comment!)

mu said...

Great fix!

Anonymous said...

Perfect!!!!!!

Anonymous said...

Definitely works, thanks!