Has anyone experienced issues with using a custom icon for a jQuery mobile button? I am having trouble as it is only showing a grey circle instead of the actual icon. The default icons work fine, though.
Here is the code snippet from the index.html page:
<style type="text/css">
.ui-icon-medical-icon
{
background: url(images/icons-png/mfrg_18x18.png);
}
</style>
<div data-role="content">
<a href="#" data-role="button" data-icon="medical-icon">Medical</a>
<a href="#" data-role="button" data-icon="refresh">Fire</a>
<a href="#" data-role="button">Police</a>
</div>