Site logo

Archived topic

Issue with Pagination in Search Results

5 replies · Started by Dave on February 23, 2021

Viewing posts 1–6 of 6

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

Hi Dave,

Give this CSS a try:

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

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

Cheers,

Dave

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

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

It looks like that works. Thanks!

You are welcome :)

This archived topic is closed to new replies.