Customizing Data Analyzer : Customizing page styles for Data Analyzer
 
Customizing page styles for Data Analyzer
To customize the Data Analyzer user interface, modify the following CSS files:
*da.css
*default.css
Depending on your Actuate products installation, the da.css and default.css files are located in one of the following locations:
*For a typical installation on a Windows 7 Professional system where Information Console is installed with BIRT iHub, the default location is:
C:\Program Files (x86)\Actuate\iHub2\servletcontainer\iportal\da\styles
*For a typical installation on a Windows 7 Professional system where Information Console is installed separately from BIRT iHub, the default location is:
C:\Program Files (x86)\Actuate\iPortal\iportal\da\styles
*For a typical installation on a Windows 2003 Server, Windows Vista, or Windows XP Professional system where Information Console is installed with BIRT iHub, the default location is:
C:\Program Files\Actuate\iHub2\servletcontainer\iportal\da\styles
*For a typical installation on a Windows 2003 Server, Windows Vista, or Windows XP Professional system where Information Console is installed separately from BIRT iHub, the default location is:
C:\Program Files\Actuate\iPortal\iportal\da\styles
You can specify fonts and colors for styles in the CSS files. You can specify colors using several techniques in the CSS files. You can specify the color in any of the following ways:
*Using a color name, such as navy, yellow, or teal, as shown in the following example:
color: Yellow;
*Using hexadecimal notation to set the amount of red, green, and blue to use in the color.
#FFFF00
*Using decimal notation to set the amount of red, green, and blue to use in the color. In the customization web pages, fill in the value for red, green, and blue in the corresponding fields. In a CSS file, use a call to the rgb( ) method, as shown in the following example:
color: rgb(156, 207, 255);
For more information about using cascading style sheets, access the following URL:
http://www.w3.org/Style/CSS