XF 2.0 Change color of Filter dropdown selection

svaughn114

Active member
When I click on a forum and I have the "Filter" drop-down box, how can I change the color of the word "Filter"?

I can do it by changing the color of all links, but that doesn't work because it doesn't match the rest of my page.
 
Last edited:
You barely can make out the filter drop-down box, but it's there. The link color (blue) works throughout the rest of the forums, but I need to change the "Filter" link color to white.


193159
 
Ah yes, same for my style. In your template core_filter.less find this :
CSS:
.filterBar-menuTrigger
{
    float: right;
    white-space: nowrap;
    border-radius: @xf-borderRadiusMedium;
    text-decoration: none;
    padding: 1px  5px;

Add this after :
CSS:
    color: #FFF;

You can change #FFF by what you want ! ;)
 
Top Bottom