I would like to remove collection title button, How can i do this? please help
Topic summary
A user seeks to remove or hide a collection title button from their Shopify store.
Three solutions have been proposed:
Solution 1 (MastersHub):
- Add custom CSS code to the
theme.liquidfile after the<head>tag - Access via Online Store > Themes > Edit code
Solution 2 (Jackpao):
- Suggests the issue may be theme-specific
- Requests clarification on which Shopify theme is being used
Solution 3 (devmont-digital):
- Navigate to Online Store > Themes > Edit code
- Locate the
theme.scss.cssfile - Add CSS code at the end:
.collections-tags.pt-4.pb-5 { display: none; }
The discussion remains open with multiple CSS-based approaches offered, though the optimal solution may depend on identifying the specific theme in use. No confirmation yet on which method resolved the issue.
Please add this code to your theme.liquid file, after element in Online Store > Themes > Edit code.
which shopify theme do you used? It looks related with your theme
Hi @Fayed ,
To hide the button, please follow these steps:
Step 1: Navigate to Online Store → Themes → Edit code.
Step 2: Search for the theme.scss.css file. At the end of the file, paste the following code:
.collections-tags.pt-4.pb-5 {
display: none;
}
