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('','','« previous entries') ?>
</div>
<div class="right">
<?php posts_nav_link('','next entries »','') ?>
</div>
</div>
</div>
what's wrong with my style???