Feedback for your online store from the community
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi
im needing some help. I would like to remove the outer green line around my collection, and also make my wording much more sleek. I’ve attached an example to show
Hi @DDClub
To help you remove the outer green line around your collection and make the wording sleeker, you’ll need to make some edits in your Shopify theme’s CSS. I’ll guide you through the process step-by-step. If you’re new to this, don’t worry; it’s straightforward!
The green line is likely coming from a border defined in your theme's CSS. Here's how you can remove it:
1-Go to your Shopify Admin:
2-Edit Code:
3-Find the Relevant CSS File:
4-Add or Modify the Code:
.collection-item { /* Replace with the actual class affecting your collection */
border: none !important; /* Removes the green border */
}
5-Save and Preview:
To improve the text design, you can:
Here’s a quick CSS snippet to make your wording more polished:
.collection-item-title { /* Replace with the actual class for your collection titles */
font-family: 'Montserrat', sans-serif; /* Sleek and modern font */
font-size: 18px; /* Adjust size as needed */
font-weight: 500; /* Adds a clean, semi-bold look */
color: #333; /* Neutral, elegant color */
letter-spacing: 0.5px; /* Adds a touch of spacing */
text-transform: capitalize; /* Optional: Makes text consistent */
}
If the green border and text styles are specific to your theme, inspect the elements using your browser’s developer tools:
Here’s how the adjustments might look:
Before: https://prnt.sc/u0Zd7LaQVZRL
After: https://prnt.sc/x33knIyMxtl5
If you’re unsure about any step or need more help fine-tuning the design, let me know!
Best regards,
Daisy