Hello. The active color was pulling from Enfold -> Main Color. I’ve added the below CSS, to get the correct color. However, when I click on another item in the sort choices, the color stays at #666. I’d like the active sort item to be #000. I want the same look as this, in the new 2017 Demo.
#top.page-id-13637 #main > div.container_wrap:nth-child(2) .av-masonry .av-masonry-sort a{
color:#666666;
}
Thank you,
Ryan
Hey accurIT,
Please remove this css code:
#top.page-id-13637 #main > div.container_wrap:nth-child(2) .av-masonry .av-masonry-sort a{
color:#666666;
}
And replace it with:
#top .av-sort-by-term .active_sort {
color: #000 !important;
}
Hope this helps.
Best regards,
Nikko
Hello. Now the Green color is back. Here are the desirables, which match the demo.
-Active sort color is Black
-Non-active sort color is Light Grey
-Hover sort color is Black
Thank you,
Ryan
Okay, so now all sort items are set to Black. Need the non-active to be #919191.
Thanks!
Hi,
Please try this instead:
.auctions_sort_button span {
color:#919191;
}
.active_sort {
color: black;
}
Best regards,
Rikard
The non-active sort text is not working. The non-active sort text should be anything other than Black and then I can adjust the color myself.
I’m going after the same look at the new, 2017 Enfold demo.
Hi!
I added following code to bottom of Quick CSS field in Enfold theme options under General Styling tab
#top .av-sort-yes-tax .av-sort-by-term span {
color: #999;
}
#top .av-sort-yes-tax .av-sort-by-term span:hover, #top .av-sort-yes-tax .av-sort-by-term .active_sort span {
color: black;
}
and flushed cache in Autoptimize and WP Total Cache plugins. Please review your website now :)
Cheers!
Yigit
Perfect! Thank you.