I want to use custom icons in my app but it not showing in test view.
I have established the following classes name in the right panel of the screen:
menubutton ui-btn-icon-left ui-icon-my_home
And this is my custom CSS:
.ui-icon-my_home:after {
background-image: url('../image/icon-home.png');
background-repeat: no-repeat;
background-size: contain !important;
}
Buttons' appearance is this in design view:
But when I test my app I have this:
How can I solve this issue?