How can I delete specific text from my ecommerce website?

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.

Work perfectly, thanks !
Last question, do you know how I can align the text and the price?

of all my product on the left side ?

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;
}