Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi there,

    In that closed ticket, they also provided the site title and site description selectors as well.

    So, I would add those if they are going to be different colors than the hyper link text. For example,

    .site-title a {
        color: #CCCCCC;
    }
    .site-description {
        color: #CCCCCC;
    }

    Replace the hex color to whatever preference you have

    Hope that helps.

    Thread Starter umponcel

    (@umponcel)

    This his only afecting the header (Site Name & Description), not those in the post or page text. Any Idea ?

    This would affect just the links in the body of pages/posts:

    .entry-content a:link {
      color: #008000;
    }

    If you want a different color when you hover over the link, you’ll need:

    .entry-content a:hover {
      color: #008000;
    }

    And if you want a different color for when the link has been clicked on and visited:

    .entry-content a:visited {
      color: #008000;
    }
    Thread Starter umponcel

    (@umponcel)

    Cool! I’ll figure out latter and let you know if it works!

    Great! Keep us updated for sure!

    Thread Starter umponcel

    (@umponcel)

    Yes! I confirm… GOOD to me… Thanks again @darnelldibbles 😉

    You’re welcome!

    Thread Starter umponcel

    (@umponcel)

    Oups!

    I understand more every days about CSS in this theme, but now i’m confused (again, loll)… If I use a Category Description, and a link… What will be the coding for all categories of posts ?

    Again, MERCI !

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Customize hyperlink text colors on Lodestar theme’ is closed to new replies.