Site logo

Archived topic

Navigation Previous next

13 replies · Started by Ernst Wilhelm on October 13, 2019

Viewing posts 1–14 of 14

How can I initiate a previous next navigation between single posts?

Thanks, Ernst Wilhelm

Thank you. Got it. What do I need to do to get the following
< prev next >
instead of
< prev
> next

Thanks

No problem :)

With the latest GP/ GPP update I am using SVG. I need to fix/move the right arrow in nav-next instead of this:
< post 1 > post3

to this:
< post 1 post3 >

I guess it has to do something with this part:
.post-navigation .nav-next .next:after {
font-family: GeneratePress;
text-decoration: inherit;
position: relative;
margin-left: .6em;
width: 13px;
text-align: center;
display: inline-block;
content: "\f105";
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1;
speak: none;
}

my reference: https://docs.generatepress.com/article/inline-post-navigation/

Thanks in advance

Any chance you can link me to the page in question?

Feel free to open a new topic so you can use the private URL field.

Let me know :)

Try this CSS:

.post-navigation .nav-next {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}
.entry-meta .nav-next .gp-icon {
    margin-right: 0;
    margin-left: .6em;
}

Thank you, Leo it worked well! 👍

No problem :)

Is there a way to add a second set of post navigation links on the single post page? I was wanting to have the second set show up below the comments in addition to the ones that show up at the end of the post.

Any chance you can open a new topic for your question?

Thanks :)

This archived topic is closed to new replies.