Site logo

[Resolved] center page number (blog)

Home Forums Support [Resolved] center page number (blog)

Home Forums Support center page number (blog)

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2360049
    steven

    Hello, I want in the blog category to center the blog page numbers (pagination)

    https://ibb.co/r67Bs95

    Thanks you

    #2360065
    Leo
    Staff
    Customer Support

    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 🙂

    #2361771
    steven

    Thanks you Leo, it’s working.

    Do you now if it’s possible to add page number 3 ? in the paging navigation

    #2361863
    Leo
    Staff
    Customer Support
    #2368724
    steven

    Thanks leo, but it looks a bit complicated for me to edit

    #2368963
    David
    Staff
    Customer Support

    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.

    #2369033
    steven

    Hi David, Thanks you it’s working 🙂

    #2369716
    David
    Staff
    Customer Support

    Glad to hear that !

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.