[deleted] I am using Links by FriendsOfFlarum for header Menu Links - https://discuss.flarum.org/d/18335-friendsofflarum-links
I want to change the Menu link text color
Change the Header Menu Link Color
[deleted]
mskian Ahh, I see. In this case, you could use a wildcard like the below - obviously, change the color to suit
li[class^="item-link"] a {
color: #ffffff;
}
[deleted]
mskian Works for me. Can you clear your caches ?
still nope
[deleted]
mskian So the color is not showing ? You could add !important
at the end of the CSS class, although it shouldn't be necessary, and you may also impact any :hover
class
it work's well
#header-primary > ul > li.item-link1 > a {
color: #FFFC00;
}
#header-primary > ul > li.item-link3 > a {
color: #FFFC00;
}
[deleted]
mskian Great ! Odd though, as that is a long-winded version of
li[class^="item-link"] a {
color: #ffffff;
}
[deleted]
mskian Well, "yes", but I didn't need to