Hey,
We’re trying to make the product page full width (example 1), but for some reason can’t find the code used to do so despite already doing it in a previous website (example 2).
The idea is for it to have no margins whatsoever.
Thanks!
link: www.us-beforethem.com
password: usbeforethem
Hi @ExtraordinaryH
To complete your requests, please follow these steps:
- Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
- Paste the code provided into the Custom CSS section.
@media screen and (max-width: 768px){
media-gallery.product__column-sticky slider-component ul > li:nth-child(1) {
margin-left: 0 !important;
}
media-gallery.product__column-sticky slider-component ul > li {
width: 100% !important;
}
}
Here is the result:
I hope this helps
Best,
Daisy
Hey @DaisyVo !
We ended up fixing it yesterday by copying the base.css file from one store to the other.
But appreciate this nonetheless!