• I have the TwentyTen theme and as you can see (thelanternlight.com/blog) my Previous Posts and Newer Posts buttons don’t line up with each other at the top and bottom. How can I achieve this? Here is the code from my loop.php file:

    <div id="nav-above" class="navigation">
    		<center><div class="nav-previous" align="left"><?php next_posts_link( __( '<span class="meta-nav"></span> <img src="/images/arrowprev.gif">', 'twentyten' ) ); ?></div><div class="nav-next" align="right"><?php previous_posts_link( __( '<img src="/images/arrownew.gif"> <span class="meta-nav"></span>', 'twentyten' ) ); ?></div></center>
    	</div><!-- #nav-above -->
Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Merboy

    (@merboy)

    Any help at all? 🙁

    Thread Starter Merboy

    (@merboy)

    Nevermind. I figured it out.

    For anyone else who runs across this same problem. I simply removed the div HTML and put in a table so that my coding now looks like this:

    <center><table width=100%><tr><td><?php next_posts_link( __( '<span class="meta-nav"></span> <img src="/images/arrowprev.gif" border=0>', 'twentyten' ) ); ?></td><td><div align="right"><?php previous_posts_link( __( '<img src="/images/arrownew.gif" border=0> <span class="meta-nav"></span>', 'twentyten' ) ); ?></div></td></tr></table></center>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Aligning my "older/new posts" buttons?’ is closed to new replies.