How to I change the "older posts" and "newer posts" links to an image link instead of just a text link.
How to I change the "older posts" and "newer posts" links to an image link instead of just a text link.
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;
}
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.
This topic has been closed to new replies.