Hello!
The images on the home page and the collection page are very big.
How can I change to pixels or the image size?
The store URL: https://www.vibes12.com
Main issue: Images on the home page and collection pages in the Turbo Theme appear too large; the requester wants to reduce their size or set specific pixel dimensions. Store URL was provided for context.
Attempted solution: A helper suggested adding custom CSS in styles.css targeting collection list images:
Outcome: The requester reported no visible change after applying the CSS. No further troubleshooting steps or alternative methods were discussed.
Status: Unresolved/ongoing. Key open questions include whether the CSS selectors match the Turbo Theme’s markup, if styles.css is the correct asset for overrides, and how to set precise image dimensions (pixels) for the home and collection pages.
Notes: The provided code snippet is central to the discussion; no images or attachments beyond the store URL were referenced.
Hello!
The images on the home page and the collection page are very big.
How can I change to pixels or the image size?
The store URL: https://www.vibes12.com
can you try this code
.list-collections .image-element__wrap {
position: relative;
padding-top: 100%;
}
.list-collections .image-element__wrap img {
position: absolute;
top: 0;
left: 0;
right: 0;
}
Hi!
It didn’t change something