Wednesday, November 12, 2008

OBIEE Default colour Title border

Good a quick question on how to set the default Titleborder colour in OBIEE to red.

image

Go to your view.css directory in ..s_MyCompagny\b_mozilla_4

Locate this part and change the colour:

/* ***** */
/* Title */
/* ***** */

.TitleTable {
    font-family: arial, helvetica, sans-serif;
    border-width: 0 0 4px 0;
    border-style: solid;
    border-color: #FF0000;
}

If you are on OC4J don't forget it to copy to applications directory: ...oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_MyCompagny\b_mozilla_4

Till Next Time

1 comment:

Anonymous said...

Hi,

alternatively, to make this cahnge impact only one page at a time, you may paste the same custom format content in a text view on a report or a dashboard, just framing it with a pair of html style tags like :

(replace ~ sing with proper < or > character in the example below)

~style~
.TitleTable {
font-family: arial, helvetica, sans-serif;
border-width: 0 0 4px 0;
border-style: solid;
border-color: #FF0000; }
~/style~

Make sure you flag the Static text with "Contains HTML Markup", and the change should impact your current page only. This works on my side.