• Resolved woowaa

    (@soyoyo)


    Hi, thank you for the good plug-in.

    I have something to ask.
    As the number of pages increases, the button goes out of the screen and is disappearing.
    There’s no problem with desktops, but there’s a problem with mobile.
    I changed the settings to show minimal buttons,
    I’m still having a problem.
    If I set up more buttons to be displayed,
    More buttons will disappear out of the screen.
    Can you help me?

    Thanks.

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author AlanP57

    (@alanp57)

    Perhaps this custom CSS code will help. You can add this to your style.css or to the custom CSS section of your theme or Customizer.

    .wp-paginate-comments li:first-child {
        margin-left: 0;
    }
    Thread Starter woowaa

    (@soyoyo)

    Hello, thank you for your answer.
    Unfortunately, I applied the code and erased the cache, but it didn’t change.
    Is there any other way?

    Plugin Author AlanP57

    (@alanp57)

    You can try adding ‘!important’:

    .wp-paginate-comments li:first-child {
        margin-left: 0 !important;
    }

    In addition to clearing the browser cache, check to see that any cache running on the site has been cleared.

    Custom CSS code need to be applied last. If you have a different way add custom CSS, try that.

    Thread Starter woowaa

    (@soyoyo)

    I tried all the ways I used it, but there was no change.
    I erased the cache, The code is displayed in the developer console of chrome…
    Please let me know if you find any another way. Thank you.

    Plugin Author AlanP57

    (@alanp57)

    The CSS seems to be working when I view the page.

    Thread Starter woowaa

    (@soyoyo)

    Yes, I can see the code of CSS of my page.
    But my buttons are still out of the screen…
    I would be happy if the buttons came into the screen with mobile.
    Thank you for your help.

    Plugin Author AlanP57

    (@alanp57)

    You can add some more custom CSS code:

    @media (max-width: 480px) {
      .wp-paginate li {
         margin-left: 3px !important;
      }
    }
    Thread Starter woowaa

    (@soyoyo)

    Wow, the code is working, and my buttons are in the screen!
    Thank you for your help for a long time.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Button disappears out of screen’ is closed to new replies.