Is there something that should be in my css?
This is the CSS from the default (kakumei) theme:
/* Page navigation
=================================== */
a.page-numbers,
span.page-numbers {
border-right: 1px solid #bbbbbb;
border-bottom: 1px solid #bbbbbb;
padding: 4px 4px 2px 5px;
margin-left: 5px;
background-image: url('images/page-links-background.gif');
background-repeat: no-repeat;
background-position: 0 0;
}
span.page-numbers.current {
color: #ffffff;
background-position: 0 -100px;
}
#latest a.page-numbers {
font-size: 0.8em;
padding: 3px 3px 1px 4px;
margin-left: 3px;
}
a.prev.page-numbers,
a.next.page-numbers,
span.page-numbers.dots {
border-width: 0;
padding: 0 4px;
background-image: none;
}
span.page-numbers.dots {
padding: 0;
}
a.page-numbers:hover {
background-position: 0 -100px;
}
a.prev.page-numbers:hover,
a.next.page-numbers:hover {
color: #006400;
}
@ Gautam:
Thanks so much. Turns out the page-links-background gif was missing from the images folder.
You are the best!