You can hide thumbnails and / or screen captures from the search results with CSS definitions on your Dashboard.
Locate the CSS settings from the AddSearch Dashboard with the following instructions:
To hide the thumbnails add the following snippet to Search results textfield. Note that the row with width declaration applies only for the search Widget view. If you are using the Separate Results Page view remove the row.
/* HIDE THUMBNAILS */ #addsearch-results .addsearch-result-item-container, #addsearch-results .addsearch-result-item-sub-active, #addsearch-results .addsearch-result-item-sub { background-size: 0 0 !important; } #addsearch-results .addsearch-result-item-sub-active div, #addsearch-results .addsearch-result-item-sub div { padding-left: 30px !important; width: 545px; /* REMOVE THIS LINE IF USING SEPARATE RESULTS PAGE */ }
To hide the screen captures add the following snippet to the search result textfield. Note that the snippet applies only to the search Widget view. The screen captures are not displayed on the Separate Results Page view and adding the snippet may have undesired results.
/* HIDE SCREEN CAPTURES - ONLY USE FOR SEARCH WIDGET */ #addsearch-results #addsearch-pic{ display: none !important; } #addsearch-results.addsearch-d #addsearch-results-right{ width: 0; margin-left: 583px; } #addsearch-results.addsearch-d { width: 585px !important; margin-left: 192px; /* REMOVE THIS LINE IF YOUR SEARCH INPUT IS ALIGNED TO THE LEFT */ }