Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ReportViewer showing broken images in Chrome

I'm using ReportViewer 10.0. In Google Chrome, the lines come with a broken image called blank.gif. But IE and Firefox are working fine.

Here's an example with the images circled:

Screnshot

Any ideas on how to fix this?

like image 397
Daniel Avatar asked Nov 21 '12 17:11

Daniel


1 Answers

Just add the following CSS from SQL Reporting Services - Viewer broken in Non-IE Browsers:

body:nth-of-type(1) img[src*="Blank.gif"]{
    display:none;
}
like image 87
Allen Avatar answered Oct 03 '22 07:10

Allen