jquery mobile how remove the grey round circle on icon

icons, jquery-mobile

Solution

If you are using jQuery v 1.4.0 + then you just need to add the class `.ui-nodisc-icon` to your link element to remove that annoying circle. You will not need to edit any css or write any overrides.

Problem

I build my first phonegap Jquery Appl Im changing my icon using this class ``` .ui-icon-myapp-email { background-image: url("app-icon-email.png"); } ``` This custom icon is for a list view , and i try to remove the round grey background load Also my picture is a bit big for the shape I was playing with the .ui-icon but doesnt work Cant find the class I just wanna my custom arrow picture full size on a white background list no round no circle box shape Maybe there is an attribute or via css to make that thanks

Original source