I want to provide the readers of one of my blog posts with an easy possibility to navigate back to the blog page they started from. Of course they can use the previous button of the browser, but I want to create some kind of previous button (preferably only code that I can connect to an svg) at the bottom of the blog post. I’m not a developer and don’t know how to write code myself. Can anyone help me?
If you want a button (or SVG) that takes them back to any previous page they were on, you can add this as a Plain Text link javascript:history.back(). Like this:
Yes, that works. Thanks. Linking back to the main blog page is what I did already. But that’s not satisfying for a reader who is for example on blog page 5. But the javascript trick solved my problem.