Archived topic
center page number (blog)
7 replies · Started by steven on October 1, 2022
Hello, I want in the blog category to center the blog page numbers (pagination)
Thanks you
Hi Steven,
Try this CSS:
.category-blog .paging-navigation .nav-links {
justify-content: center;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Thanks you Leo, it's working.
Do you now if it's possible to add page number 3 ? in the paging navigation
Try this filter:
https://docs.generatepress.com/article/generate_pagination_mid_size/
Thanks leo, but it looks a bit complicated for me to edit
Hi there,
you only need to add the PHP Snippet to your site:
add_filter( 'generate_pagination_mid_size','tu_increase_pagination_numbers' );
function tu_increase_pagination_numbers() {
return 3;
}
If you're not using a Child Theme then add the code using the Code Snippets plugin.
Hi David, Thanks you it's working :)
Glad to hear that !