Improving the image resolution in Product List - xmpie-users/uStore-js GitHub Wiki
Changing the CSS of the product thumbnail will not improve the resolution of the image, only its size. Here's a script that will increase the thumbnail image size - in this example - to 400px by 400px
<script type="text/javascript">
$("document").ready(function() {
$("img[id^=imgProduct]").each (function (idx,obj) {
$(obj).attr ("src",$(obj).attr ("src") + "&width=400&height=400")
});
});
</script>