Site logo

Archived topic

CSS for blog archive navigation

3 replies · Started by Cynthia on May 17, 2020

Viewing posts 1–4 of 4

I'm stuck and have looked through forum. Want to change GeneratePress paging CSS on blog page to look like on this page (done with Beaver Builder):

Hi there,

try adding this CSS:

#nav-below {
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center
}
.nav-links > * {
    display: block;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    margin: 0 5px !important;
    background-color: #e36588;
    color: #ffffff !important;
}
.nav-links > .page-numbers:hover,
.nav-links > .page-numbers.current {
   background-color: #5fcfcb; 
}

Oh, my goodness; I was doing it every harder way to no avail. Worked perfect, thank you!

Glad to be of help

This archived topic is closed to new replies.