I've been experimenting with jQuery mobile and designed a custom theme using themeroller. Following the instructions, I added the necessary links in the <head>
:
<link rel="stylesheet" href="themes/mycustomtheme.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.0/jquery.mobile.structure-1.4.0.min.css" />
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.js"></script>
Although my custom theme is working flawlessly, when I try to use an icon like this:
<a href="#home" data-transition="slideup" data-role="button" data-icon="home">Home</a>
The "home" icon does not appear as expected. Instead, it just shows an empty circle.
I am using Google Chrome. Any insights on what I can add to fix this issue?