Shopify themes, liquid, logos, and UX
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 everyone,
I’m trying to make better use of the space on my product pages. Right now, the product image and selection options are centered, leaving empty space on both sides. I’d like to spread these elements out so that the product image aligns more to the left and the selection options move more to the right, filling the full width of the page.
Here’s the preview link to my store: https://www.rappid.run/collections/frontpage
Password: Password
Thank you in advance for your help!
Best,
Kim
Solved! Go to the solution
This is an accepted solution.
@KimGottwald , go to base.css and add the following code :
@media (min-width:900px){
.product__info-wrapper.grid__item {
padding-left: 15rem !important;
}
.page-width:has(.product) {
max-width: 130rem !important;
}
}
This is an accepted solution.
@KimGottwald , go to base.css and add the following code :
@media (min-width:900px){
.product__info-wrapper.grid__item {
padding-left: 15rem !important;
}
.page-width:has(.product) {
max-width: 130rem !important;
}
}