You must be logged in to post
Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

wp-pagenavi not working well on this theme…help!

UserPost

3:22 am
December 28, 2009


joeflizo

Member

posts 11

1

Hello,

I installed wp-pagenavi plugin  into my site but it's not working well.

The pagenavi style should appear like this on default:

themeshaper [dot] com/wp-content/uploads/2008/04/pagenavi-300x45.jpg

but it appear like this without i costumizing it default style:

img20 [dot] imageshack [dot] us/img20/8504/39668972.jpg

This is where i put the code in the index.php template…i make the default next/previous button dissapear by putting

#nextprevious {display:none;} in the style.php

 <ul style="margin-bottom:40px;">
      <?php get_archives('postbypost', 15); ?>
    </ul>
 
        </div></div>
        <?php endif; ?>

<div align="center" style="padding-top:15px; padding-bottom:15px;">

<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>

</div>

<div id="nextprevious">
          <div class="left">
            <?php posts_nav_link('','','&laquo; previous entries') ?>
            &nbsp;&nbsp;</div>
          <div class="right">
            <?php posts_nav_link('','next entries &raquo;','') ?>
          </div>
        </div>
      </div>

what's wrong with my style???