What's your biggest current challenge? Have your say in Community Polls along the right column.

Need to add extra line to "No results found" page

Need to add extra line to "No results found" page

BNMs
Tourist
10 0 3

Hello! I want to add extra text line to "No results found" page. Have no idea where to start :))

I would like to put the phrase "Can't find what you are looking for? Contact us." just under the "No results found" message. It would be perfect if the words 'Contact us' could be clickable and would lead to the contact page.

test.jpg

Hope what's clear :))

Replies 3 (3)

swym
Trailblazer
157 33 73

Hey @BNMs

 

Can you please share your store URL also please let me know the name of the theme you are using. This will help share a more tailored solution for your store. 

 

Regards, 

Abhishek from Swym 

- Appreciate the assistance. Show your approval with a Like! And when your question finds its answer, seal the deal by marking it as an Accepted Solution!
- Our Solutions: Wishlist Plus | Swym Back in Stock Alerts | Swym Gift Lists and Registries
arielcarvajalc
New Member
5 0 0

Hey! I'm trying to do exactly the same. This is my store URL https://www.ninurtacr.com/ and I'm using Dawn.

swym
Trailblazer
157 33 73

Hi @arielcarvajalc

 

To address your query about shifting the desktop logo and social icons on the header to the right-hand side, kindly follow the steps outlined below:

 

1. Open the code editor, as shown in the screenshot below.

swym_0-1721379734986.png

 

2. Create a snippet called ‘custom-search-styles’ and add the below code:

  <style>

    /* NOTE: YOU CAN ADJUST THESE NUMBERS AS PER YOUR STORE REQUIREMENT */

    /* FOR DESKTOP */

    .template-search__header [role="status"] {
       padding-top: 2rem;
    }

    /* FOR MOBILE */

    @media only screen and (max-width: 767px) {
      .template-search__header [role="status"] {
        padding-top: 2rem;
      }
    }
  </style>

 

3. Include the ‘custom-search-styles.liquid’ file in your “theme. liquid” file.
Add the following include code to your theme.liquid file.

{% render 'custom-search-styles' %}

It would look something like below:

swym_2-1721380088274.png

 

4. Done? Save the file, and try previewing to confirm if the changes work for you.  In the reference above, it looks something like below:

swym_1-1721380011713.png

 

I hope this helps!

Regards,
Abhishek from Swym 

- Appreciate the assistance. Show your approval with a Like! And when your question finds its answer, seal the deal by marking it as an Accepted Solution!
- Our Solutions: Wishlist Plus | Swym Back in Stock Alerts | Swym Gift Lists and Registries