• Resolved sarasalonen

    (@sarasalonen)


    Does anyone have a clue what to do with the page navigation (pagination, previous page, next page) which disappears on tablet and mobile? Is there any way to make it stay visible on every device?

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • As mobile has less horizontal space its hidden but I think the following CSS should get you what you’re looking for if you add into Appearance->Customize->Additional CSS

    @media screen and (max-width: 960px) {
    	nav.navigation {
    		display: inherit;
    	}
    }
    Thread Starter sarasalonen

    (@sarasalonen)

    Thank you for answering, but otherwise than expected nothing happened. I mean, I tried (almost) the same piece of code before. That made me wonder, where the problem actually is? Do you have any idea? @jarretc

    Still looking for solution!

    Try adding !important after the inherit value

    display: inherit !important;

    Thread Starter sarasalonen

    (@sarasalonen)

    Now it seems to work! Thank you so much for helping me @jarretc ! ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Pagination disappears on mobile’ is closed to new replies.