views:

17

answers:

1

I am new to SSRS. I have created a report and was able to deploy it on the server. I am calling the report from ASP.NET application. How can I change the CSS of the report? I want to change the styles for individual data cells of the table deing displayed also. How is it possible? Thanks in advance.

+1  A: 

You can customize the CSS at <drive>:\Program Files\Microsoft SQL Server\MSSQL.n\Reporting Services\ReportServer\Stylesor you can specify your own Stylesheet.

See this MSDN article for complete reference: Customizing Style Sheets for HTML Viewer and Report Manager

moontear
I want to change the report table's width to 100% but I was not able to find CSS relating to table's dimensions. It would be great if you can answer it. Thanks for the article. It helped.
biluriuday
In Internet Explorer hit F12 (beginning with IE7, IE6 doesn't have that functionality). It will open the developer toolbar. There you can click on the little arrow in the top-left corner and with that special arrow select the table in the report. You then will see the source code of the page and can target the table (i.e. you will see the class the table has and you can apply CSS styles right away in the developer toolbar). If the developer toolbar is not working you have to manually go through the source of the page.
moontear