Hi,
I am alternating the background colors white and grey on my site.
When I have a grey background color I want the pagination with a white background.
With
.pagination .current, .pagination .inactive{
background-color: white !important;
I can change the pagination itself, but the circles with “>” and “>>” are not affected.
How can I adress them?
Furthermore with the code above the hover effect is changed as well, but I want to keep the original hover effect.
With
.pagination .inactive:hover { }
I can adress the hover-effect, but I dont know the original hover color.
(in the private area I placed a link to the webpage)
Looking forward for your input.
BR
Florian
Hey Florian,
Please edit your color section with grey background and give them unique ID’s –
https://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png and then add following code to Quick CSS
#grey-color-sections .pagination .current, #grey-color-sections .pagination a {
background: white;
}
Best regards,
Yigit
Thanks a lot, works perfectly fine!