Alow Posted February 16, 2021 Share Posted February 16, 2021 Site URL: https://tulip-helix-jd8r.squarespace.com/katalog Hi, Looking for a snippet to replace "NEXT" and "PREVIOUS" in my pagination, to be in our local language just like the rest of the site. At the very bottom here: https://tulip-helix-jd8r.squarespace.com/katalog Thank you! Link to comment
dvgdvgdvg Posted February 16, 2021 Share Posted February 16, 2021 (edited) Add this to your custom CSS: .list-pagination-prev div:nth-of-type(2) { display: none; } a.list-pagination-prev:after { content: "Föregående"; line-height:1.1em; } .list-pagination-next div:nth-of-type(1) { display: none; } a.list-pagination-next:before { content: "Följande"; line-height:1.1em; } I used Google Translate to guess at the right "previous"/"next" translations, so if they aren't the right word just change the text inside the quotation marks. 🙂 Edited February 16, 2021 by dvgdvgdvg Alow and tuanphan 2 Link to comment
Alow Posted February 16, 2021 Author Share Posted February 16, 2021 Many thanks, worked like a charm!! Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment