Archive for September 2009
Drupal 6 – Remove numbers from pager output
Having made many attempts at trying to the remove the pager numbers through a template.php file I found the easiest solution was to add the following to my custom theme style.css.
.pager-item{
display: none!Important;
}
.pager-current{
display: none!Important;
}
It means the fix will remain even if Drupal needs updated.
