BusinessObjects Board

CSS not changing button color

The following code is not working when I use a css class for a button

.myButton {
background: brown;
}

From the css class I am calling myButton.

I even tried the below:

.myButton {
background-color: brown;
}

I tried testing to see if it is even calling the css code applying th efollowing on a text field.

.myText {
background: red;
}

The text turned red. So looks like this is not working for buttons or charts.


kumaran22 (BOB member since 2010-07-14)

Your probably placing it an incorrect location ie CSS Class is where it belong OR your application file is pointing to a different CSS file most likely


katullus :us: (BOB member since 2009-08-21)

I have come to rely on using the browser developer tools to ID the class for a particular object.


kevlray :us: (BOB member since 2010-06-23)