All things Shopify and commerce
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,
i want to increase the width of the size guide page without impacting the other pages, can any one help.
https://cae01c-2.myshopify.com/pages/ring-size-guide
Hello, I found the code that is affecting your container to be smaller. Currently this class adds padding to all sides:
@media screen and (min-width: 990px)
.image-with-text__content {
padding: 6rem 7rem 7rem;
}
You might fix this just by adding this code in your custom css
@media screen and (min-width: 990px)
.image-with-text__content {
padding: 6rem 0 7rem;
}
Let me know if that helps. Also don't forget to check if it didn't affect other pages. You might need to edit theme files to add specific setting or identifier for this page
Hi viktorasbui,
thanks for your time, but unfortunately it didn't work, i don't know why