XF 2.0 Page Navigation

I would like to change the colours.

Anyone?

for current page.. place this code in your extra.less template and alter the values to whatever suits you

Code:
.pageNav-page.pageNav-page--current {
    background: red;
    color: blue;
    border: 1px solid black;
    
}

for next pages

place this code

Code:
.pageNav-page {
    display: table-cell;
    background: red;
    color: blue;
    border-top-color: blue;
    border-right-color: blue;
    border-bottom-color: blue;
    border-left-color: blue;
    
}
 
Back
Top Bottom