I've been reading and searching for a solution which allows me to replace the initial "Next/Previous" links on the bottom of the page with just images, without showing the text. So far i've got this:
Main index template:
-------------------------
<div id="nav1" class="alignleft"><?php next_posts_link('» previous') ?></div>
<div id="nav2" class="alignright"><?php previous_posts_link('next »') ?></div>
CSS:
--------
.navigation{width:450px;float:left;color:#ffba00;}
#nav1{background:url(images/next.jpg)no-repeat top left;height:55px; width:77px; padding-left: 5px; padding-top:12px;}
#nav2{background:url(images/next.jpg)no-repeat top left;height:55px; width:77px; padding-top:12px; padding-left:20px;}
But, this way it just shows a background image underneath the textlinks. I would love to have the textlinks not visible at all, but have the image link to the prev.next post(s)
This may be a nOOb questions, but i can't seem to get around it.
Any help would be much appreciated.