Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter butrinty

    (@butrinty)

    One more screenshot of the pagination problem: https://i57.tinypic.com/2ykj2tx.png

    Btw, I have one more question regarding this issue: Can I integrate the wp-pagenavi plug in into this plugin, so then the pagination is the same for all of the pages in the website?

    Thanks again!

    Plugin Author xnau webdesign

    (@xnau)

    You can’t use another page navigation plugin because it’s a different kind of page, not a content page, but a page of data.

    Your problems with the pagination are due to your theme interfering withe the plugin CSS. You need to add some CSS rules to override what your theme is doing. There is a place on the plugin settings page where you can put your CSS rules.

    Thread Starter butrinty

    (@butrinty)

    Thanks a lot for your answer!

    Could you please tell me what kind of CSS rules of code, since I’m not that good in WordPress? I would really appreciate it.

    Thanks again for your time and the great plugin!

    Plugin Author xnau webdesign

    (@xnau)

    I can’t tell you because it’s your theme, I don’t know what will fix it in your case. You may find someone with more knowledge of the theme in a help forum for your theme.

    Thread Starter butrinty

    (@butrinty)

    Alright, I’ll try to look for help in the theme forum.

    Thanks again!

    demoman2k10

    (@demoman2k10)

    Got the same issue with mine… Using P3 Theme, seen several others as well doing the same thing. CSS isn’t my strong point but would appreciate anything you find passing along.

    Plugin Author xnau webdesign

    (@xnau)

    You will probabaly have to get a better understanding of how the theme stylesheet is affecting the layout of the pagination links. I really have nothing to go on here, but the main paints are that the UL element needs to have it’s list style set to none, and the LI elements need to be set to display “block” and the “A” elements within those must be floated left.

    I can'[t tell you exactly how to accomplish this because it all depends on what other CSS rules are affecting thing on your site.

    demoman2k10

    (@demoman2k10)

    Found and fixed both, was not able to get them to take hold in the Plug-In’s CSS but had to put in the theme’s css.

    These were the 3 entries I had to modify and add to my themes special CSS page. I’ve included to help others possibly find their issue. This fixed the issue, I’ll be seeing if certain parts of it can be refined and trimmed over the days and not affect it. These entries made no change to the rest of my theme as well.

    .pdb-list .pagination ul, .pdb-pagination ul {
    	list-style: none outside none;
    }
    
    #main ul#postlist ul, #main .post ul {
    	list-style: none outside none;
    }
    
    #main ul#postlist .postcontent ul li, #main ul#postlist .commentlist .commentcontent ul li, #main ul#postlist .postcontent ol li, #main ul#postlist .commentlist .commentcontent ol li {
    	display: list-item;
    	padding: 0;
    }
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘A problem with page navigation numbers’ is closed to new replies.