How to remove Favicon from the product page

Topic summary

A user seeks to remove a favicon appearing on their product page at zevaramaze.com. The favicon is displaying as an unwanted element on the page layout.

Proposed Solutions:
Multiple respondents suggest similar CSS-based fixes:

  • Add custom CSS code to hide the element using .category_listing-block { display: none !important; }
  • Access via Shopify Admin → Online Store → Themes → Edit Code
  • Insert code in either theme.scss.css, base.css, style.css, or theme.liquid file depending on the theme

Key Considerations:

  • One respondent requests clarification on which Shopify theme is being used to provide more specific guidance
  • The solutions target a .category_listing-block element, suggesting the favicon may be part of a category listing component
  • Screenshots were shared to illustrate the issue and solution steps

Status: Multiple solutions provided, awaiting user confirmation on which approach worked.

Summarized with AI on November 15. AI used: claude-sonnet-4-5-20250929.

Hi @aksdoshi

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • 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:
.category-listing_block {
    display: none !important;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!