• Resolved crampio

    (@crampio)


    Please see post “Page x of x gets split if more than 10 pages display”

    Never got an answer for this. It happens after the 7th page. Cicking on any page number below 7 is ok, anything higher the “Page x of x” brakes in 2 pieces.

    Hope someone can help.

    https://wordpress.org/plugins/wp-pagenavi/

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.