Hi, sorry for the inconvenience!
Anyone knows how to remove that vertical padding the page has from left and right?
i will attach a photo!
Webpage: https://centralmrkt.myshopify.com
Pass: 90210
Thanks!!!
A user seeks to remove horizontal padding (left and right margins) from their Shopify store pages, providing a screenshot for reference.
Initial Solution Provided:
base.css, style.css, or theme.css targeting .collection.page-width and #main-collection-filters with padding-left: 0px and padding-right: 0pxExpanded Request:
The user wants the padding removed from all pages, including header, footer, and all sections.
Additional Code Offered:
Future Plans:
User plans to later add standard Shopify pages (Terms & Conditions, Contact Us, FAQ, etc.) and may need further assistance.
Status: Ongoing discussion; complete solution pending visibility of all affected pages.
Hi, sorry for the inconvenience!
Anyone knows how to remove that vertical padding the page has from left and right?
i will attach a photo!
Webpage: https://centralmrkt.myshopify.com
Pass: 90210
Thanks!!!
Hi @davidvilaa
Do you mean the padding on both sides? This maybe affect all pages. Try this one.
.collection.page-width {
padding-left: 0px;
padding-right: 0px;
}
aside#main-collection-filters {
padding-left: 0px;
padding-right: 0px;
}
I hope it help.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thanks, but it only affects to the collection page, could you provide me a code that affects to all the page? Including header and footer, all possible page sections
Try this one for the heading.
header.header.header--middle-center.header--mobile-center.page-width.header--has-menu {
padding-left: 0px;
padding-right: 0px;
}
Im not seeing another pages that you have only homapage and product page?
Hi, thanks for the solution!
later i would like to add some normal shopify pages to add Terms & Conditions, Contact us, FAQ, etc.
Any solutions? ![]()
Let me know then.. Because without seeing it, it would be hard.