Those look like form buttons. Since this script generates regular links (<a>) for the pagination, the easiest way without modifying the script itself is just to use CSS to style the links so they resemble form buttons, something like:
Code:
<style type="text/css">
.paginationstyle a{
background-color: #d1ec4c;
border: 2px #d1ec4c outset;
padding: 1px 4px;
color: black;
text-decoration: none;
font: bold 90% "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
}
.paginationstyle a:visited{
color: black;
}
.paginationstyle a:hover{
border-style: inset;
background-color: #e3f48e;
padding: 2px 3px 0 5px; /*shift text 1px to the right and down*/
}
</style>
This assumes the DIV containing your pagination links have a CSS classname of "paginationstyle", something like:
Code:
<div class="paginationstyle">
<a href="#">ds</a> <a href="#">ds</a> <a href="#">ds</a>
</div>
Bookmarks