Developing and Deploying Siebel Business Applications > Modifying the Look and Feel of the Web Client > Adding a New Logo to the Banner >

Modifying the Banner Color Scheme


The color schemes and other styles in Siebel Web templates are controlled using a cascading style sheet. To change the color scheme of the banner frame, you modify the rules defined in the cascading style sheet for your application.

In this example you work with the banner selector. The banner selector defines display rules for the banner frame. To modify the background color, you change the value of the Background-color property. For a list of selectors used in cascading style sheets, read Configuring Siebel Business Applications.

To modify the banner background color

  1. Navigate to the client_root\public\language_code\files directory and then open the file dCCmain.css.

    The file, dCCmain.css, is the cascading style sheet for Siebel Customer and Partner Applications.

    NOTE:  The cascading style sheet for Employee applications is main.css.

  2. Find the following selector and properties in the Banner Definitions section of the file:

    .banner,
    TD.banner TD A,
    TD.banner TD A:visited,
    TD.banner TD A:hover { background-color: #afc2ea; color: #003399; text-decoration:none; font-weight:bold;}

  3. Change the value of the background-color property and the color property as shown below:

    .banner,
    TD.banner TD A,
    TD.banner TD A:visited,
    TD.banner TD A:hover { background-color: #BDD3FF; color: #333399; text-decoration:none; font-weight:bold;}

  4. Find the following line:

    .applicationMenu { background:#123783; }

  5. Change the value of the background-color property as shown below:

    .applicationMenu { background:#BDD3FF; }

  6. Save the file.
  7. Clear your browser's cache directory and then open the Siebel application to be tested.

    For the current example, open the Partner Portal application.

    The banner frame appears with the new background color, as shown in Figure 35.

    Figure 35. Banner Frame with Modified Color Scheme
Developing and Deploying Siebel Business Applications Copyright © 2006, Oracle. All rights reserved.