Hide Content Tags In Search Results
Example: Prevent tags such as the content author, content date or content type from displaying in the search results returned within your site.
/* To Hide ALL Content Tags */
.search-result .search-result-tag { display: none; }
/* To Hide the Content TYPE Tag Only */
.search-result .search-result-type { display: none; }
/* To Hide the Content AUTHOR Tag Only */
.search-result .search-result-author { display: none; }
/* To Hide the Content DATE Tag Only */
.search-result .search-result-date { display: none; }


