Hi Stephen,
If your tree nodes are links then the .OraLink class prevails.
You should try using link pseudo-classes like this:
.p_OraTreeRowSelected:link, .p_OraTreeRowSelected:visited,
.p_OraTreeRowSelected:active, .p_OraTreeRowSelected:hover {
...
}
Hope this helps.
You might also want to check using Firebug, what CSS classes are applied
with higher priority on the tree nodes.
cheers,
--
Cristi Toth
-------------
Codebeat
www.codebeat.ro
On Sat, May 17, 2008 at 3:57 PM, Stephen Friedrich <[EMAIL PROTECTED]>
wrote:
> I found no info on how to change the text color of the selected tree row
> (greenish by default).
> After looking at the generated HTML/CSS I tried this:
> .p_OraTreeRowSelected {
> color: #ff9900 !important;
> font-weight:bold !important;
> background-color:red !important;
> }
>
> The only selector that is really used is the background color (that I
> inserted only for testing).
>
> So how to change font-weight and text color?
>
> Thanks for any help!
>