Search Results page list colors

Folks,

What do I need to do to change the gray background of the page selection at the bottom of my search results page? Where it says 1, 2, 3, etc, I’d like to make the gray darker. You can see a sample search result page here:

https://csf.coastalmyst.com/?s=rods&post_type=product&dgwt_wcas=1

Jonathan

Hello Jonathan,

Thanks for writing in!

To change the colors of the pagination items in your page, simply please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.x-pagination ul {
    background-color: grey;    
}

.x-pagination span.current {
    background-color: white;
    color: red;
}

.x-pagination a {
    background-color: green;
    color: yellow;
}

Feel free to change the color values because I used distinct colors. It would be easier for you to identify which color you want to change.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.