I wanted to make thumbnails of thumbnails in the list. So I did it with jQuery Mobile version 1.4.2 :
.ui-listview .ui-li-has-thumb > img:first-child, .ui-listview .ui-li-has-thumb > .ui-btn > img:first-child, .ui-listview .ui-li-has-thumb .ui-li-thumb { left: 1px; top: 1px; max-height: 40px; max-width: 40px; } .ui-listview > .ui-li-has-thumb > .ui-btn, .ui-listview > .ui-li-static.ui-li-has-thumb { min-height: 0; padding: .7em 1em .7em 55px; }
The top, left and bottom padding that I define above is just to return these padding values ββto the default values ββfor ui-btn . The image is positioned absolutely in the listview element, so if you want to make the image larger, you must compensate for this by increasing the min-height css property shown above.
source share