If I’ve overridden a CSS root style to:
body .dijitTitlePane .dijitTitlePaneTextNode {
color: #FFFFFF;
font-family: Verdana, arial;
font-size: small;
font-weight: bold;
}
now I want to use the original .dijitTitlePane .dijitTitlePaneTextNode CSS style, is there a “super” class definition I can use here?
Thanks,
David
Try:
Another alternative, if you don’t care about IE6 support: you can put !important on whatever style you want to override everything else.