Archived topic
Adding lines above and below the "previous/next post"
7 replies · Started by Melissa on July 28, 2019
How can I add a single line <br> above and below the "previous/next post" section at the bottom of single posts? There doesn't seem to be a hook between the post text and the "previous/next post".
Hi there,
Can you try creating a custom hook and use this?
https://docs.generatepress.com/article/generate_paging_navigation/
Let me know if this helps :)
It didn't seem to have any effect.
Hi there,
do you want to just add some additional space above and below the post navigation? If so some CSS like this will help:
#nav-below {
margin-top: 4em;
margin-bottom: 2em;
}
No, I want a line
What about this?
#nav-below {
border-top: 1px solid #000;
border-bottom: 1px solid #000;
}
Perfect! Thanks!
No problem :)