I do not want my search results to display the content type, author, date, time, and number of comments. How can I completely remove this line from the search results?

Comments

hollybeary’s picture

You could display:none it in your style sheet. For example, I added this code to my style.css file to remove it on a site I was working on a few weeks ago.

dl.search-results dd p.search-info {
  display:none;
}

You can try using that same code, although depending on what theme you have enabled it may call to it differently. Hope it helps!

sparkguitar05’s picture

I found the code I needed in Firebug and set display:none. Worked great. Thanks!

cesar.brod@gmail.com’s picture

Would you please point us to the code you have found on Firebug, please?

Thanks!

UMG’s picture

This worked for me as well. Thanks, saved me a lot of time.

mselisabs’s picture

Thank you very much! Still easy and relevant in 6.x