Filter color

Posted in: Newspaper
Post count: 7

Hi, how to change filter color? I use Flex block 1, but cant change the hoover color.
I use now custom CSS to change filter color, vut cant fint hoover code.

.td-subcat-filter .td-subcat-list a {
color: #fa7e25;
}

Post count: 21065

Hello!

This code which you use applies correct to the filter color, and also for hoover you need to introduce another code like this:

.td-subcat-filter .td-subcat-list a:hover {
color: blue;
}

You can change the color from blue into any color.
Hope that helps you!

Thank you!

Post count: 7

Hi,
I have tried this code, but don’t work 🙁 Hover is still black.

.td-subcat-filter .td-subcat-list a {
color: #fa7e25;
}

.td-subcat-filter .td-subcat-list a:hover {
color: #ffffff;
}

Post count: 21065

Hello @Berg90!

It seems you have to use this code instead:

.td-subcat-filter .td-subcat-list a:hover {
color: blue!important;
}

Let me know about your results!

Thank you!

Post count: 7

Thank you so much 🙂

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.