Abraham54 Well-known member Dec 8, 2018 #1 I can not find where to change the colour of the font and arrow the filterBar-menuTrigger is using when not active. The colour of the font and arrow is black and has to become white. See picture:
I can not find where to change the colour of the font and arrow the filterBar-menuTrigger is using when not active. The colour of the font and arrow is black and has to become white. See picture:
SyTry Well-known member Dec 8, 2018 #2 Hello, filterBar-menuTrigger is your class (CSS/LESS), you can find it in your core_filter.less template : Code: .filterBar-menuTrigger { float: right; white-space: nowrap; border-radius: @xf-borderRadiusMedium; text-decoration: none; padding: 1px 5px; &:after { .m-faBase(); .m-faContent(" @{fa-var-caret-down}"); } } The default code, you need to add color: #FFF; after padding: 1px 5px; for example ! If you want you can add this code to your EXTRA.less template : Code: /*color filterBar*/ .filterBar-menuTrigger { color: #FFF; } Next time you can use the search system by xenForo : Regards, SyTry Upvote 0 Downvote
Hello, filterBar-menuTrigger is your class (CSS/LESS), you can find it in your core_filter.less template : Code: .filterBar-menuTrigger { float: right; white-space: nowrap; border-radius: @xf-borderRadiusMedium; text-decoration: none; padding: 1px 5px; &:after { .m-faBase(); .m-faContent(" @{fa-var-caret-down}"); } } The default code, you need to add color: #FFF; after padding: 1px 5px; for example ! If you want you can add this code to your EXTRA.less template : Code: /*color filterBar*/ .filterBar-menuTrigger { color: #FFF; } Next time you can use the search system by xenForo : Regards, SyTry
Abraham54 Well-known member Dec 8, 2018 #3 Hello SyTry, many thanks. I added the color to core_filter.less. Upvote 0 Downvote