How do I Change The Pagination Color? - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

How do I Change The Pagination Color?

M

Max

Helix Framework 3 years ago

Hello, how can I change the pagination color (please, have a look at the screenshot: https://ibb.co/1fCW8xh)?

Link: https://joomla3.weblider.ru/article.html?start=36

Thank you in advance.

0
4 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #73313

Hi there!

Thanks for your query.

Please use the following sample code in your custom CSS:

.pagination .page-item.active .page-link {
    color: #fff;
    background-color: red;
    border-color: green;
}

You can use your desired colors within the above code:)

Note: Path towards custom CSS(Joomla 3): Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code.

Best Regards

0
Ariba
Ariba
Accepted Answer
Support Agent 3 years ago #73314

Hello

Thank you for your query.

Please add the following css rule in custom css section and change the color codes

.page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
0
M
Max
Accepted Answer
3 years ago #73501

Thank you!

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #73591

You are always welcome:)

0