How can I remove and disable the search and User icons?

Hi there!

I am using the Refresh theme and I would like to remove the Search and User icons.

I can’t find the option, can you help me?

Website: https://plenitudvital.es/

Thanks!

Hi there,

There is not standard setting for this. But you can change the code if you feel comfortable. It is quite an “easy” task if you feel up for it.

@kingdom2 avoid spamming labels all you do is add noise to the forums making it harder for future searches, and set yourself up to be ignored

when you have real difficult problem by those that block low effort or spammy posts.

Use search, styling icons, hiding icons, is a very common topic for Dawn based themes

Hi @kingdom2

Try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.header__icon--search, a.header__icon.header__icon--account {
    display: none;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Hi @kingdom2

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


Hope this can help you solve the issue

Best regards,

Richard | PageFly

Hello @kingdom2

  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:
.header__icon--search, a.header__icon.header__icon--account {
display: none;
}