Tagged: search results
Hello,
I would like to change the border color of search results circles and of the pagination circles. Please see the private link. Is it possible to do this?
Thank you,
Marina
Hey Marina,
Please try this for the search result circles:
.search-result-counter {
border-color: red;
}
The pagination circles actually have box shadow applied, and this is the current value:
.pagination span.current, .pagination a.inactive {
box-shadow: 0 0 1px 0 rgb(0 0 0 / 20%);
}
Best regards,
Rikard
Hello,
Does not work, neither of the code pieces, the color is not changing.
Best regards,
Marina
Hi,
That’s unfortunate. Please try this instead:
.search-result-counter {
border-color: red !important;
}
.pagination span.current, .pagination a.inactive {
box-shadow: 0 0 1px 0 rgb(0 0 0 / 20%) !important;
}
Best regards,
Rikard
Hello,
The pagination code works, for the search results – still doesn’t work.
Best regards,
Marina
Hi,
Please try this instead for the search result:
.search-result-counter {
border: 1px solid red;
}
Best regards,
Rikard
Hello,
This code does not produce the needed result either. However, the following code works:
.search-result-counter { box-shadow: 0 0 1px 0 rgb(0 0 0 / 50%) !important; }
Thank you for your help, you can close the ticket.
Best regards,
Marina
Hi,
Great, I’m glad that you got it working. I’ll close this thread for now then, please open a new thread if you should have any further questions or problems.
Best regards,
Rikard