The colours.css file has a transparent background rule on the pagination ellipsis span but it doesn't have any effect as there is no colour added to it anywhere else.
File:
colours.css
|
Find:
.pagination li.ellipsis span {
|
background: transparent;
|
color: #000000; |
}
|
Change To:
.pagination li.ellipsis span {
|
color: #000000; |
}
|