[Resolved] Issue with Pagination in Search Results

Home Forums Support [Resolved] Issue with Pagination in Search Results

Home Forums Support Issue with Pagination in Search Results

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1669645
    Dave

    For some reason, the pagination at the bottom of the search results is all jumbled on mobile.
    It works fine everywhere else.
    Could you take a look?

    cheers,

    Dave

    #1669685
    Ying
    Staff
    Customer Support

    Hi Dave,

    Give this CSS a try:

    #nav-below.paging-navigation {
        display: flex;
        flex-wrap: wrap;
    }
    #1669719
    Dave

    That does work but looks a little crowded. Is there a way to take away the “older” and “newer” text?

    Cheers,

    Dave

    #1669726
    Ying
    Staff
    Customer Support

    Yes, you could try this, it will hide the text on mobile device.

    @media (max-width: 481px) {
        .prev {
            display: none;
        }
    }
    #1669737
    Dave

    It looks like that works. Thanks!

    #1669782
    Ying
    Staff
    Customer Support

    You are welcome 🙂

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