• [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 ?

      [deleted] Works for me. Can you clear your caches ?

      expect color rest things working like padding, margin width adjustments are working

        • [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