esjay
esjay

Reputation: 165

jquery mobile custom icon repeats

I must be missing something simple, but I can't seem to get a custom icon working. When I specify the data-icon attribute in my HTML link with corresponding CSS, the icon repeats as if other jQuery styling is being ignored. Not sure what I am missing, I did review the documentation for custom icons - looked pretty straightforward

Any help with be appreciated.

Upvotes: 0

Views: 205

Answers (1)

sleepwalker
sleepwalker

Reputation: 1032

Per my understanding you have a separate class for each your icon. You should set background-repeat: no-repeat for that custom classes.

Or unite it - example for fb icon:

background: url("fb18.png") no-repeat;

Upvotes: 1

Related Questions