• Resolved mmirlach

    (@mmirlach)


    I’d like to change the color for the author information on the bottom of posts.
    As of now, the background is black, the text is white and grey.

    I would like to change the background color to #eee and the text to #fff.

    Is this easily doable via CSS?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Thanks for using Tracks!

    Yes, this is actually pretty easy to do with CSS. Here’s the snippet you can use:

    .author-meta {
      background: #eee;
      color: #fff;
    }
    .author-meta a,
    .author-meta a:link,
    .author-meta a:visited {
      color: #fff;
    }

    Please copy & paste the code above into the “Additional CSS” section in the Customizer (Appearance > Customize), and it will take effect right away.

    The text is a little hard to read, so you can modify any of the color codes there if you’d like. The second color property is for links only.

    Thread Starter mmirlach

    (@mmirlach)

    Perfect, thanks!

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome! Stay in touch if you need anything else and I’ll be happy to help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Color author information’ is closed to new replies.