i have uploaded 4 collection image with 1080px X 1080px in single row but it looks small, i want to make it look bigger and wants to stretch with full width, any suggestion ?
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.
here is store link https://rustic-rack-clothing-co.myshopify.com/
password is advertfox
hi, @Advertfox
Please send page URL
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
its not working, still the space left in both ends
Hi @Advertfox
You can do that by adding this code below in Custom CSS of that section
.collection-list-wrapper {
max-width: 100%;
}
i have placed it in base.css file and it worked !!! you’re star
thanks a lot
You are very welcome. If you add it to base.css file, it will affect all collection lists of your store. If you wan to change for one section, added in Custom CSS of section only
can you also tell me how can i change the design of my newsletter input and button ?? i want to make one input field and one subscribe button instead of arrow
i want button instead of arrow, thank you
exactly this ! just a little space between input field and subscribe button
Please add this code
.newsletter #contact_form .newsletter-form__button {
position: unset;
background-color: #9FDCDF !important;
margin: 0px 0px 0 4px;
height: 47px;
width: 15.4rem;
}
.newsletter #contact_form .newsletter-form__button .icon {
opacity: 0;
}
.newsletter #contact_form button#Subscribe:after {
content: 'Subscribe';
margin-left: -12px;
font-weight: 700;
}
}
.newsletter #contact_form .newsletter-form__field .field:after,
.newsletter #contact_form .newsletter-form__field .field:before {
box-shadow: unset;
}
.newsletter #contact_form .newsletter-form__field input.field__input {
padding-right: 1.5rem;
box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground),var(--inputs-border-opacity));
}
it workeddddddd, how can i do the same in footer ?
also i want to make input field background color white


