CSS – change link format in Photography theme

  • Unknown's avatar

    In Theme Foundry’s Photography, “Light” design, links in posts have no differentiating format. Using “Custom Design” upgrade, have tried adding to CSS:
    a:link { color: #FF0000;}
    and the other link states.
    Does not affect site styling. Theme Foundry’s own forums don’t help.
    Can not identify Theme CSS line that I should use – even by inspect element in browser. Any one known the CSS code needed?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Here’s how to target links in the light style for your theme (including the hover state):

    body.light a {
      color:#f00;
    }
    
    body.light a:hover {
      color:#00f;
    }
  • Unknown's avatar

    @stevepri, I see you have incorporated @hallluke’s code so I am going to mark this as resolved. If you have additional questions or problems, just let us know.

  • The topic ‘CSS – change link format in Photography theme’ is closed to new replies.