How to edit the text on the search page

Solved

How to edit the text on the search page

CreatorTim
Navigator
471 1 71

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?

 

Snímek obrazovky 2025-01-04 155031.png

 

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

 

Thanks,
Tim

Accepted Solution (1)

TikitaTech
Shopify Partner
76 18 18

This is an accepted solution.

Hi @CreatorTim!

 

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

Head to Admin > Online Store > Customise > Search:

2025-01-04T22_11_49,518273305+07_00.png

 

Select Search Results > Custom CSS:

Example result:

2025-01-04T22_11_09,081151172+07_00.png

 

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:

 

2025-01-04T22_14_32,690475997+07_00.png

 

Hope this helps!

Co-founder @ Daeda Technologies PTE. LTD. to make tech simple

Daeda Wishlist - a simple wishlist app

Need custom solutions? Contact me at tikita@daeda.tech

View solution in original post

Replies 2 (2)

TikitaTech
Shopify Partner
76 18 18

This is an accepted solution.

Hi @CreatorTim!

 

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

Head to Admin > Online Store > Customise > Search:

2025-01-04T22_11_49,518273305+07_00.png

 

Select Search Results > Custom CSS:

Example result:

2025-01-04T22_11_09,081151172+07_00.png

 

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:

 

2025-01-04T22_14_32,690475997+07_00.png

 

Hope this helps!

Co-founder @ Daeda Technologies PTE. LTD. to make tech simple

Daeda Wishlist - a simple wishlist app

Need custom solutions? Contact me at tikita@daeda.tech
CreatorTim
Navigator
471 1 71

Thank you! Works