I really like the way on the oxygen template the way pagination is styled. Could this same styling be added to a different template?
I know that the following code is used:
[code type=css]/* Pagination */
ul.pagination{list-style-type:none;margin:0;padding:0;text-align:center;}
ul.pagination li, li.pagenav-prev, li.pagenav-next {background: url(../images/read.png); display:inline;margin:2px !important;padding:2px 8px !important; text-align:center; border:1px solid; border-color: #CCCCCC #BBBBBB #BBBBBB #CCCCCC; -moz-border-radius:0px 0px 5px 5px; -webkit-radius: 5px; border-radius:5px; line-height:24px !important;}
ul.pagination li a{padding:2px; margin:0;padding:0;}
ul.pagination li:hover, li.pagenav-prev:hover, li.pagenav-next:hover {
background-color: #CEDAF6;
background-image: -moz-linear-gradient(center top , #BDEDFF, #74B2E9);
background-image: -webkit-gradient(linear, center top, center bottom, from(#BDEDFF), to(#74B2E9));
box-shadow: 0 0 2px #999999;
}[/code]
And there is also: ul.pagination {float:left; width:100%;}
But I'm guessing there is something else that completes the pagination.
Any help on this would be very much appreciated.