diff --git a/src/main/webapp/css/style.css b/src/main/webapp/css/style.css index b6c89470b..d31cf4fad 100644 --- a/src/main/webapp/css/style.css +++ b/src/main/webapp/css/style.css @@ -250,6 +250,10 @@ ul.searchOptionLabels li { border-radius: 0px; } +img.thumbnail { + width: 100px; +} + .thumbnail { background-position: 50% 50%; background-repeat: no-repeat; diff --git a/src/main/webapp/js/search.js b/src/main/webapp/js/search.js index b399ef95e..90ab8652d 100644 --- a/src/main/webapp/js/search.js +++ b/src/main/webapp/js/search.js @@ -216,7 +216,8 @@ $(function() { loadImage(img, url, --limit); }, IMG_LOADING_DELAY); } else { - $(img).attr('src', contextPath + "/images/noimage.png"); + // $(img).attr('src', contextPath + "/images/noimage.png"); + $(img).parent().css('display', 'none'); } imgData = null; });