How can I delete the 'search' label over my search bar?

How can I remove the title “search” above the search bar and reduce the empty space once its gone?

https://swifftdelivery.myshopify.com/collections/uc-davis-drinks

Password swifft2022

@made4Uo

You can do that by adding this CSS code at the bottom of your base.css file

.template-search__header h1 { display: none !important; }

@jhghidossi ,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. In your theme.liquid file, find the (press CTRL + F or command + F on Mac)
  3. paste this code right above the tag:

If it helps you please click on the “like” button and mark this answer as a solution!

Thank you.

Kind regards,
Diego

Hi,

I tried this and it did not work. Is there something else I need to do?

@jhghidossi , try this instead:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > base**.css** and paste this at the bottom of the file:
.template-search__header > h1{
    display: none !important;
}

If it helps you please click on the “like” button and mark this answer as a solution!

Thank you.

Kind regards,
Diego