Editing colors of Pagination links

Joshua

Active member
I installed a theme that needs some editing to the pagination link colors. See the attached image below. Nearly illegible... Where can I edit these style settings? Screen shot 2012-06-08 at 9.49.58 PM.webp
 
Just had a quick glance at my css and here is what I had in the extra.css Template you would only have to alter the colours to suit.I'm quite sure though that you can go and alter them in the style properties.

Code:
/*PAGENAV ENHANCEMENTS*/

.PageNav a {
    background-color: #f1f1f1;
    border-color: #d2d2d2;
    color: #313131;
}
.PageNav a.currentPage {
    background-color: #e6ebd5;
    border-color: #c3d195;
    color: #545c3c;
}

.PageNav a:hover, PageNav a:focus {
    background-color: #c9d3a5;
    border-color: #9dac6b;
    color: #545c3c;
}

/*PAGENAV ENHANCEMENTS*/
 
Top Bottom