Site logo

Archived topic

Remove Next Button In Pagination and Replace With Last Post Number

3 replies · Started by Sam on August 25, 2018

Viewing posts 1–4 of 4

Hi there,

You could try something like this:

.nav-links .next {
    display: none;
}

.nav-links a,
.nav-links .current {
    display:  inline-block;
    padding: 10px;
    width: 20px;
    line-height: 20px;
    height: 20px;
    border-radius:  50%;
    background:  #ddd;
    text-align: center;
}

.nav-links .current {
    background: #222;
    color: #fff;
}

Worked Beautifully. Thanks Tom.

You're welcome :)

This archived topic is closed to new replies.