is there a way to load a specific set of icons for a theme? I tried using [data-theme=c] and and that didn't work
Css
[data-theme=c].ui-icon,
[data-theme=c].ui-icon-searchfield:after {
background-image: url(../images/icons-18-black.png) /*{global-icon-set}*/;
background-repeat: no-repeat;
-moz-border-radius: 9px;
-webkit-border-radius: 9px;
border-radius: 9px;
}
html
<ul data-role="listview" data-divider-theme="b" data-inset="true">
<li data-theme="c">
<a href="#page4" data-transition="slide">
Items
</a>
</li>

[data-theme="c"]? – jmort253 May 21 '12 at 0:26<style></style>block to test these in to make sure your selectors are right. Style blocks take higher precedence over external CSS. If that doesn't work, then your CSS rules are broken. If it does work, then you need more specific CSS selectors. – jmort253 May 21 '12 at 0:41