• Resolved dimal

    (@dimalifragis)


    Hi,

    On Single category pages, if you go over page 2, 3 etc, the paging number at the bottom is looking strange.

    See:

    https://prnt.sc/52zYCSdswOSc

    Any help on this is appreciated.

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • johnwandler

    (@johnwandler)

    Try inspecting that element and see, what “display” is applied atm. It looks like “display: block” for me, but give me more info, if you’ll still need a help.

    Edit:
    Also check “word-break” property.

    Thread Starter dimal

    (@dimalifragis)

    @johnwandler I have tried many things and failed. Including your suggestions.

    Finally i solved that with a quick-and-dirty way, making the font one size smaller in the numbers. Not the best way, still i had to fix it.

    Thread Starter dimal

    (@dimalifragis)

    This is a UNIVERSAL bug, happens in ALL Directorist sites i could find.

    Check this for example with a cell phone, the paging numbers

    https://shopnative.powwows.com/all-listings/page/3/

    Plugin Support Mahfuzul Alam

    (@mahfuz87)

    Hi @dimalifragis

    The flex container is trying to fit the whole pagination in one line, so the pagination links are shrinking to adjust themselves in one line.

    There are several ways to fix it –

    1. You can reduce the pagination midpoints to 3 instead of 5 to fit it nicely – Directorist: Custom Pagination (github.com)

    2. You can use custom CSS to wrap it to multiple lines for mobile view –

    @media only screen and (max-width: 600px) {
      .directorist-pagination {
        flex-wrap: wrap;
      }
    }

    3. You can also use CSS code to reduce padding, font size to adjust them in one line.

    Please let me know if you need further information.

    Kind Regards

    Thread Starter dimal

    (@dimalifragis)

    @mahfuz87 Thank you.

    Thread Starter dimal

    (@dimalifragis)

    @mahfuz87 The snippet you provided

    https://gist.github.com/MahfuzulAlam/5b01e9d3c416b50b663f665b3534367a

    doesn’t seem to work right after page 3. Am i missing something?

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Paging Visual Issue on Mobile’ is closed to new replies.