Hi I am building an apparel store. https://softsavg.com/
I want to make the collection page full width. Can some one please help with this?
Thanks
Hi I am building an apparel store. https://softsavg.com/
I want to make the collection page full width. Can some one please help with this?
Thanks
Hey @DasPod !
You can increase the collection page width directly from the theme customizer settings:
This should make your collection page full width.
If your theme doesn’t offer this option or you need more flexibility, you can also achieve this using CSS. Just add the following code to your base.css file:
.collection.page-width { max-width: unset !important; padding: 0 !important; }
Let me know if you need any further tweaks or if you have any questions. Happy to help
Shubham | Untechnickle
Hi @DasPod
I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Edit code: https://prnt.sc/M4p-gua99Uf4
2/ Search for “theme.liquid” file: https://prnt.sc/b6xveIKe-Rh2
3/ Open the file and search for tag and add the following code above tag: https://prnt.sc/KWtKYyZkDtYJ
Here is the code for Step 3:
{% style %}
.collection.page-width {
max-width: unset !important;
padding: 0 !important;
}
{% endstyle %}
Please let me know if it works. Thank you!
Best,
Daisy - Avada Support Team.
Hi DasPod
You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file
.collection.page-width {
max-width: unset !important;
}
Result:
Best,
Liz
Hi @LizHoang
I think we should remove the padding too.
ohh, thank mate
This is Richard from PageFly - Shopify Page Builder App
Hi @DasPod Please add code here to fix it:
Step 1: Online Stores > Themes > Edit code
Step 2: Choose file theme.liquid
Step 3: Add code above the tag
<style>
.collection.page-width {
max-width: 100% !important ;
padding: 0 10px !important;
}
</style>
And here is result
Hope my solution will help you resolve the issue.Best regards,
Richard | PageFly
Hi Aii,
the solutions you provided works. I have used the code in base.css. But the only makes the image cards full width. Not the Filters below the header. Can you please help with that?
Hi @DasPod ,
can you try this code
.page-width {
max-width: 100% !important;
}
Hope my solution will help you resolve the issue.
Best regards,
Richard | PageFly