Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi there. The way you apply a style to a certain area, rather than across your site, is by making sure you target an area specifically. Sometimes that means including two classes or a class and an ID. That way the style you create will only apply when BOTH classes are in play. So take a look at the relevant areas, “inspect element”, and then apply styles as needed.

    Something like this:

    .some-class .another-class {
    color: #333;
    }

    In the above example, this color would only apply when BOTH classes are in effect.

    Thread Starter prosandconsofmormonism

    (@prosandconsofmormonism)

    Thank you! I added this and it seems to work:

    .post-entry
    a:visited {
    color: #F26F94;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change clicked link color for everything but header and menu’ is closed to new replies.