I am using JQuery mobile and I want all of the text to be purple on my application. I did this: color: #7A68AE !important;
in my body
section of my
This might have happened because of many reasons. For example:
!important
clause was overriden by another!important
clause, with more specific selector (Edit: one of other people answering your question, Brad, pointed a resource about it: www.w3.org/TR/CSS2/cascade.html#specificity),You said you have Firebug, so you should be able to determine what is the case. See with JS enabled and disabled, see styles applied for specific selectors and see resulting styles. Without the code there is not much we can say about that.