• Resolved jseedhouse

    (@jseedhouse)


    Hi, I’m a WP beginner and need to change the hyperlink color on my site: https://www.janeseedhouse.com/

    Right now the hyperlinked text is grey and doesn’t really stand out. I want to change it to the color: #0b1f47

    I have read other, much older posts on the same topic and can’t seem to figure it out. I’m either changing the color of the entire body of a blog post, or the color changes I’m making are doing nothing.

    Should I be changing the CSS of Genesis? or Lovely Theme?

    And can someone show me the necessary code to add on/change?

    THANKS!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Could you please clarify which links? Sidebar/widget links? Entry meta links? Entry content links? Nav links? Category links? Tag links?

    .

    Instead of changing the CSS of the parent theme, I’d recommend adding the CSS into your custom CSS area or child-theme’s CSS file. Changes in the parent theme’s CSS file would be removed every time the theme updates; that’s not good.

    For entry-content links (the links inside your blog posts, but not category/tag or meta links):

    .entry-content a {
        color: #0b1f47;
    }

    For sidebar links

    .widget a {
        color: #0b1f47;
    }
    Thread Starter jseedhouse

    (@jseedhouse)

    This was the solution I was looking for:

    .entry-content a {
    color: #0b1f47;
    }

    Thank you ThePixelMe!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Lovely Theme: Change Hyperlink Color’ is closed to new replies.