Is there any documentation to change the style in Jquery mobile? I want to make my link text-decoration: none; but the underline still remaining there. I notice there is .ui-page to override for page but is there any full documentation to customize our own style? This is not related to the jquery mobile theme (a, b, c..)
Thanks.
*updated*
<div id="contentA" class="contentbox">
<h3>Hello</h3>
<a class='levelA' href="#anotherPage" ><img src="img/img.png" />
<p class="levelDescA" >XXXXXXXX
</a>
</div>
You probably have a problem with specificity. The jqueryUI.css specificity will be higher than yours. You can counter this two ways:
a { text-decoration: none; }trybody #container #content a { text-decoration: none; }. (Obviously use your element ID’s instead of the ones I have made up)a { text-decoration: none !important; }– This is generally bad practice as it may cause issues further down the line so I recommend the first