Hello everyone.
Could someone help me with displaying similar quick links on the collection page? I’ve attached a screenshot for reference, and here is the sample store URL.: https://threadheads.com/collections/graphic-tees
This is Impact theme
A user seeks help displaying quick links on a collection page using Shopify’s Impact theme, providing a screenshot and sample store URL as reference.
Solution Provided:
collection.liquid under Sections or Templates)theme.css or base.css) to format the quick links sectionThe original poster confirmed the solution was helpful. The response includes code snippets for both the HTML structure and CSS styling, though the text appears reversed/encoded in the original post.
Hello everyone.
Could someone help me with displaying similar quick links on the collection page? I’ve attached a screenshot for reference, and here is the sample store URL.: https://threadheads.com/collections/graphic-tees
This is Impact theme
Hi @Digital_Imran ,
This is Amelia from PageFly - a Landing Page Builder App
To display similar quick links on your collection page using the Impact theme, you can follow these steps:
Access Theme Code:
Locate the Collection Template:
Add Quick Links Section:
Insert a new section for quick links. You can add HTML and Liquid code to create the links. For example:
<div class="quick-links">
<h3>Quick Links</h3>
<ul>
<li><a href="/collections/graphic-tees">Graphic Tees</a></li>
<li><a href="/collections/new-arrivals">New Arrivals</a></li>
<li><a href="/collections/sale">Sale</a></li>
<!-- Add more links as needed -->
</ul>
</div>
Style the Quick Links:
Add CSS to your theme’s stylesheet (often theme.css or base.css) to style the quick links section. For example:
.quick-links {
margin-top: 20px;
padding: 10px;
background-color: #f9f9f9;
border: 1px solid #ddd;
}
.quick-links h3 {
font-size: 18px;
margin-bottom: 10px;
}
.quick-links ul {
list-style-type: none;
padding: 0;
}
.quick-links ul li {
margin-bottom: 5px;
}
.quick-links ul li a {
text-decoration: none;
color: #333;
}
.quick-links ul li a:hover {
text-decoration: underline;
}
Customize as Needed:
I hope that my solution works for you.
Best regards,
Amelia | PageFly
Thank you so much ![]()