Hi,
I have a div with the following CSS class defined:
<div class="ui-button ui-state-active">bla bla bla</div>
I am trying to define the CSS styling for that class by doing it this way
<style>
.ui-button .ui-state-active {
background-color:#000000;
}
</style>
It's not working, am I referring to the class in the wrong way?
Thanks