• Hi, I would like to change the font color of the catlist listing on my page. how do you do it with css
    I have tried with :
    .lcp_catlink {
    color: #ffffff;
    }

    but that does not work.

    • This topic was modified 7 years, 7 months ago by AntoniusFX.
Viewing 1 replies (of 1 total)
  • Plugin Author Fernando Briano

    (@fernandobt)

    Hi Antonius,
    Unless you’ve set a specific class named “lcp_catlink”, that doesn’t exist by default. The right class is lcp_catlist. You can change the color with this css code:

    .lcp_catlist{
      color: #ffffff;
    }

    You may want to include the a tag there for the links to posts to have that color too:

    .lcp_catlist a{
      color: #ffffff;
    }

    Hope that’s what you were looking for. Cheers!

Viewing 1 replies (of 1 total)
  • The topic ‘How to change the colour of the catlist display font’ is closed to new replies.