Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Lester Chan

    (@gamerz)

    I don’t have a solution for that because it is design/theme related and is subjective to everyone, even on my own site.

    So I set the pages to display as little as possible and if it is on mobile I show next/prev instead like this if you are using Bootstrap

    <?php if(function_exists('wp_pagenavi')) { wp_pagenavi('<nav class="pagination visible-lg">', '</nav>'); } ?>
    	<nav class="hidden-lg">
    		<ul class="pager">
    			<li class="previous"><?php previous_posts_link('&larr; Previous'); ?></li>
    			<li class="next"><?php next_posts_link('Next &rarr;'); ?></li>
    		</ul>
    	</nav>

    Thread Starter crampio

    (@crampio)

    Ok, thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Second attempt to get resolved CSS brakes if clicking page 7 or higher’ is closed to new replies.