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;
}