Hey !
i have some trouble about design on collection page :
filter :
numbers of pages :(have to be show horizontally but now is vertical)
how can i fix this ?
link: https://utopia-paris.fr/collections/bagues
theme: studio
thanks !
A Shopify store owner using the Studio theme reports two CSS layout issues on their collection page:
Problems identified:
Solutions offered:
Three different CSS fixes were proposed:
DaisyVo’s approach: Add custom CSS through Theme Settings > Custom CSS, targeting .pagination__list>li with flex: unset for pagination, plus additional code to restructure the filter form display and hide active facets.
Valya_1’s diagnosis: Suggests the issue may be caused by something overwriting default styles after page load. Recommends checking recently added third-party apps or scripts as potential culprits.
topnewyork’s solution: Modify theme.css/base.css directly by adding code targeting .svg-wrapper, nav.pagination, and .pagination-wrapper to fix spacing and display properties.
All responders provided screenshots demonstrating their proposed fixes. The discussion remains open with multiple viable solutions presented but no confirmation of which approach was implemented.
Hey !
i have some trouble about design on collection page :
filter :
numbers of pages :(have to be show horizontally but now is vertical)
how can i fix this ?
link: https://utopia-paris.fr/collections/bagues
theme: studio
thanks !
To complete your requests, please follow these steps:
.pagination__list>li {
flex: unset !important;
}
Here is the result:
form#FacetFiltersForm {
display: flex !important;
gap: 0 !important;
width: 100% !important;
}
.active-facets.active-facets-desktop {
display: none !important;
}
.facets__summary .icon-caret {
top: 25% !important;
}
.facets__summary {
margin-bottom: 0 !important;
}
div#FacetsWrapperDesktop h2#verticalTitle {
margin: 0 !important;
}
Here is the result:
I hope this helps
Best,
Daisy
Hey there,
The issue seems to be that something is overwriting the elements. When the page is first rendered, the filters and pagination appear as they’re supposed to.
If this issue started happening recently, I recommend checking any third-party apps or scripts that were added last.
If you need further assistance, let me know - I’d be happy to investigate this further for you!
.svg-wrapper {
margin-right: 14px !important;
}
nav.pagination {
display: table-caption;
}
.pagination-wrapper {
justify-items: center !important;
}
Thanks!