Hey, I would like to remove the text “Suivant” and “Précédent” on my collection pages.
Can someone help me please?
Thanks.
My website is : https://structureparis.com/
No password
Hey, I would like to remove the text “Suivant” and “Précédent” on my collection pages.
Can someone help me please?
Thanks.
My website is : https://structureparis.com/
No password
Hello @andrew133 ,
Please add the below code in the styles.css theme file at the bottom:
span.prev {
display: none !important;
}
span.next {
display: none !important;
}
Hope this will help you out.
Hello @andrew133 ,
Please add the below CSS in the same file at the bottom:
.product-list .thumbnail .price {
text-align: left !important;
}
.product-list .thumbnail .title {
text-align: left !important;
}
Perfect, but don’t work for the price
Hello @andrew133 ,
Please check with adding this code:
.product-details {
text-align: left !important;
}