My website www.arshiinteriors.com has been showing this grey banner when I click any category of the store section (please see the attached image, I’ve highlighted the banner with red markings). This never used to be there but recently this grey banner with the size mentioned has started showing.
Based on the screenshot you provided, it looks like the gray banner is a message indicating the number of products that are currently displayed in the collection page. This message is usually displayed by Shopify themes when there are more products in the collection than are currently being shown on the page.
If you would like to remove the gray banner, you can modify your theme’s code to hide it. To do this, follow these steps:
From your Shopify admin, go to “Online Store” > “Themes”.
Click on “Actions” > “Edit code” for your current theme.
In the left sidebar, click on “Sections” and then click on “collection-template.liquid”.
Scroll down the code until you find the following line:
html:
{{ page_title }}
Add the following line immediately after it:
html:
.page-width .h1--hidden { display: none; }
Save your changes and refresh your website to confirm that the gray banner is no longer displayed.
This code adds a CSS rule to hide the gray banner by default. The CSS rule targets the .h1–hidden class, which is added to the same h1 element containing the product count by the above code. If you want to show the gray banner again in the future, you can remove the CSS rule.
This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/engo-customize.scss.css->paste below code at the bottom of the file:
I hope you are doing good and welcome to the Shopify Community!
I am Santanu from MS Web Designer (Top Rated Shopify Certified Experts and eCommerce Consultant from Singapore).
Please add this css in your bottom of the css file: #shopify-section-collection-template .wrap-bread-crumb {display: none !important;}