You need to have Domain administrator role assigned to change BellaDati's design. In multi-domain configurations, you must have the Global admin role.

Advanced administrators of BellaDati can take the advantage of customizing the CSS of PDF export. The option is available in Domain Administration. Go to Domain and select Look&Feel Settings in left navigation bar.

The custom CSS code needs to be written in the last text area, called PDF export CSS Stylesheet.

On this page:

Customizing CSS of Report Export

  1. To be able to change the CSS of specific report, you need to know the ID of the report. It can be found in URL: https://URLofBellaDati/bi/report/detail/IDofReport.
  2. Then you need to open "preview" of the PDF, which is located at URL: https://URLofBellaDati/bi/report/detailexport/IDofReport/SIZE/FORMAT/FILETYPE.
    Example: https://
    URLofBellaDati/bi/report/detailexport/IDofReport/A4/PORTRAIT/PDF.
  3. Next you can check the HTML code of this page (for example by various code inspectors), find the elements you want to change and then type new settings into CSS Stylesheet pro PDF export.

    Only tables and KPIs work in this preview.

  4. For example you can change the color and size of headers by using this code:

    h1 {
       color:green;
        font-size: 30px;
    }
    h3 {
       color:purple;
        font-size: 20px;
    }
  5. The result will look like this: