Hello Kris,
This class should be enough to apply the hand cursor to the menu items.
.radmenu a.link |
{ |
cursor:pointer; |
} |
The problem with the missing CSS styling in Firefox is probably due to the .VMENU.something selectors i found in skin.css - there's no elements with class VMENU, so these selectors are not applied. They probably work in IE through some kind of bug - IE6 isn't supposed to work with such selectors at all - so somehow the .VMENU part is discarded and the rest is applied.
You can try and remove .VMENU from the selectors to see if it gets applied, or alternatively if you need it to specify the panelbar and menu separately, like this:
.RadPanelBar_VMENU.rootgroup .selected .text, |
.RadMenu_VMENU.rootgroup .selected .text |
{ |
color: red; |
} |
Keep in mind such selectors won't work in IE6.
Let me know if this helps.
Regards,
Kamen Bundev
the Telerik team
Check out
Telerik Trainer, the state of the art learning tool for Telerik products.