• Resolved muratturan19

    (@muratturan19)


    Hi everyone;

    I am trying to chance color of links inside blog posts. I searched forum and find some CSS codes but when i add these to theme all links in page changes, name of posts, author name etc. But, i only want to change the color of links at post text. Anyone can help me?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author themevision

    (@themevision)

    Hello, there!

    There are 2 ways to change the color of hyperlinks:
    The first way is with Inline CSS by adding the style attribute directly into the hyperlink code, inserting a color property into the style attribute then giving the color property a color value.

    https://prnt.sc/ino05f
    Change hyperlink color

    or,second way is to add next codes in Customize->General->Additional CSS:

    body.single-post .entry-content p a{
        color: #28CC08;
    }
    
    body.single-post #jp-relatedposts p a{
        color: #006EFC!important;
    }
    body.single-post .single-line-meta a{
        color: #9f9f9f!important;
    }

    Change the colors per your needs.

    Regards

    Thread Starter muratturan19

    (@muratturan19)

    Thank you very much…

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

The topic ‘Link Colors’ is closed to new replies.