A problem with page navigation numbers
-
Hi everyone,
First of all, hats off to the developers for the great plug-in.
I have one question, since I’m having a problem with the way how page navigation numbers are shown.
Here it is the website so you can check and maybe it is easier to tell me what the problem is or how can I solve it. http://www.tifozatkuqezi.com/public/wp/anetaret/
Anyone has an idea how to solve it? Btw, I’m using Hueman theme.
Thanks in advance.
-
One more screenshot of the pagination problem: http://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!
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.
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!
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.
Alright, I’ll try to look for help in the theme forum.
Thanks again!
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.
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.
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; }
The topic ‘A problem with page navigation numbers’ is closed to new replies.