I’m trying to remove the button from my collection lists, how can I go about doing this?
Topic summary
Goal: remove the button from collection lists in the Prestige Shopify theme.
-
Suggested approaches: either delete the button via the theme customizer or hide it with CSS.
-
The poster requested specifics on hiding it.
-
Actionable solution provided: add a CSS rule in the theme files to hide the button within collection list sections.
• Path: Online Store → Theme → Edit code → Assets → theme.css
• Rule: section[data-section-type=collection-list] .SectionHeader__ButtonWrapper { display: none; } -
Outcome: a clear, code-based method was shared; no confirmation of implementation or further issues reported.
-
Note: A screenshot was attached to illustrate the button, but the CSS snippet is the key technical detail for resolution.
You can try to delete it from your theme customize or hide it using CSS code.
Any idea how I’d go about hiding it?
Hello @PM999
Greetings!!
Add this CSS at the bottom
Online Store->Theme->Edit code->Assets->theme.css
section[data-section-type=collection-list] .SectionHeader__ButtonWrapper {
display: none;
}
