its not working, still the space left in both ends
Topic summary
A Shopify store owner wants to enlarge collection list images that appear small despite being uploaded at 1080px × 1080px. They want the images to stretch to full width.
Resolution for Collection Images:
- Initial suggestion to edit theme.liquid markup didn’t work, leaving space on both ends
- Working solution: Add CSS code
.collection-list-wrapper { max-width: 100%; }to base.css file - Note: Adding to base.css affects all collection lists store-wide; for single section changes, use Custom CSS of that specific section instead
Additional Requests (Ongoing):
The user also wants to redesign the newsletter signup:
- Replace arrow icon with a “Subscribe” button
- Add spacing between input field and button
- Make input field background white
- Apply same changes to footer newsletter
Current Status:
CSS code provided successfully changed the newsletter design with button and spacing. Questions about applying to footer and changing input background color remain open.