Viewing 2 replies - 1 through 2 (of 2 total)
  • collegekid19,

    Try using a background image with CSS. Sample example only below as I’m not sure what code you’re using.

    <div class=”navigation”>
    <div class=”alignleft”>
    <?php previous_post(‘« « %’,
    ‘Toward The Past: ‘, ‘yes’); ?>
    </div>
    <div class=”alignright”>
    <?php next_post(‘% » » ‘,
    ‘Toward The Future: ‘, ‘yes’); ?>
    </div>
    </div>

    CSS:

    .navigation .alignleft {
    width: 100px;
    height: 100px;
    display: block;
    background: transparent url(images/previous.png) no-repeat 0 0;
    }

    .navigation .alignright {
    width: 100px;
    height: 100px;
    display: block;
    background: transparent url(images/next.png) no-repeat 0 0;
    }

    Thread Starter collegekid19

    (@collegekid19)

    No I mean the “Older Posts” at the bottom of the page. Not the one for every post. Just the links that go back to older posts.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘older posts’ is closed to new replies.