Older-newer-posts translation


Description: 

Change the language of older-newer-posts links in css.

Try ‘display’ instead of ‘visibility’.




Kind:

CSS


CSS:

.nav-previous a,
.nav-next a {
visibility: hidden;
}
.nav-previous a span:after,
.nav-next a span:after {
visibility: visible;
background: #EEE;
border: 1px solid #DDD;
border-radius: 3px;
color: #666;
display: inline-block;
overflow: hidden;
padding: 4px 8px;
}
.nav-previous a span:after {
content: " \2190 Oudere berichten";
}
.nav-next a span:after {
content: " Nieuwere berichten \2192";
}