Archived topic
Sidebar sticky, comment order and Next Post Navigation
2 replies · Started by Sam on April 13, 2021
Hello,
I just purchased the theme and looking to do a couple of things with my site.
1. I was wondering on blog posts, if the comment box can appear before the comments?
2. On a blog post, could the next/previous navigation be larger?
3. Can I make the bottom of my right sidebar sticky?
4. Is there a setting for the sidebar to not show on pages (but show on blog posts and home page).
5. Can I make a custom sidebar for certain areas/pages of my site?
6. Can I move a header widget under the navigation menu?
To give you an idea, I am trying to replicate my current live site while I work on stagging this new one. findloveandtravel.com
Thank you,
Sam
Hi Sam,
Let's keep at most a couple of questions per topic.
1. Yes, with some CSS you can achieve that.
.single-post div#comments {
display: flex;
flex-direction: column;
}
div#respond {
order: -1;
}
ol.comment-list {
order: 3;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
2. You could give this CSS a try:
nav#nav-below.post-navigation {
font-size: 20px;
}
Please open new topics for the rest questions.
Thanks for your understanding :)
Amazing both of those worked and I will add the additional ones as separate tickets. Thank you!