How to edit the text on the search page

Hi, how can I move the small text “1 result found for ‘WORD I ENTER INTO THE SEARCH BAR’” to the center, enlarge it to 36px, and make it bold?

Here is my store URL: https://1049xn-ya.myshopify.com/

Thanks,
Tim

Hi @CreatorTim !

You can add Custom CSS to the search results page to achieve this:

Head to Admin > Online Store > Customise > Search:

Select Search Results > Custom CSS:

Example result:

You can then add the following code to the p tag:

p {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
}

This is the example on your site:

Hope this helps!

Thank you! Works