Forum Replies Created

Viewing 1 replies (of 1 total)
  • I noticed you’ve wrapped your category names in spans, but you could also target links on your page directly using CSS. For example:

    .category a[href*=”drama”] {
    color: #96cf21;
    }

    Where “drama” is the link value to target, and color is the color of the text.

    Then, in your sidebar you have:

    <div class=”categoryBig”>

    Edit this line to:

    <div class=”categoryBig category”>

Viewing 1 replies (of 1 total)