STUDIO - How to make a product page-wide layout
The frame on the product page looks very narrow and I want to have a wide frame to display the products
Pls see attached photo for your understanding
Product pages in the STUDIO theme appear too narrow; the requester wants a wider layout (an image was attached for reference). After being asked for the site URL, they shared adameda.com.
Two CSS-based solutions were proposed:
Outcome: The requester confirmed the change works, indicating the issue is resolved. No further questions or disagreements remained. Technical notes: both approaches rely on CSS media queries to widen the container; the second approach uses a theme CSS variable and explicitly expands the product media area.
STUDIO - How to make a product page-wide layout
The frame on the product page looks very narrow and I want to have a wide frame to display the products
Pls see attached photo for your understanding
@Aadhiss - can you please share this page link?
@Aadhiss - please add this css to the very end of your base.css file and check, it should work properly on bigger screens
@media screen and (min-width:1400px){
.page-width {max-width: 100%;}
}
Hi @Aadhiss
This is Richard from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/section-main-product.css->paste below code at the bottom of the file:
@media screen and (min-width: 990px) {
.page-width[id^="MainProduct-template"] {
--page-width: 90%;
}
.product__media-wrapper .pmslider-root.pmslider-root--dl-v {
max-width: 100% !important;
}
}
NOTE: You can change 90% to fit your website
I hope it would help you
Best regards,
Richard | PageFly
Thanks, man, it is working well.