• Hey I need help please with changing the colors of my hyper links in the posts.
    So far I found two ways, the first is by changing the links color at the “General options” -> “General styling”. The colors of the links are really change but the title of the post and the logo colors are also changed.

    The second way I tried is with this code:
    .site-content a { color: #de6957; }
    I got the same result as the first way.

    Thanks for the help.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi Avimorde,

    Try code below. This will target links inside p tags only. Hoe this help.

    .site-content p a { color: #de6957; }

    Regards,
    Arteo

    Hi Avimorde,
    Try code below,

    div#content-wrap a {
        color: #13aff0;
    }

    [ Signature moderated ]

    Thread Starter avimorde

    (@avimorde)

    @arteo

    Thats just worked immediately. Thank you very much ??
    Only the links color in the posts changed like I wanted.

    But I noticed the hover color is disabled for this links after I added the code.
    I mean, when I hover with the mouse on the links, the color is stays still and doesn’t change like it should be. Do you have a solution for that maybe?

    Thanks again

    @angelch
    Your code just changed the all links in the site including the titles and logo.
    Thanks for trying.

    • This reply was modified 6 years, 4 months ago by avimorde.

    hello,

    which color code you can hover the link.

    [ Signature moderated ]

    Hi Avimorde,

    The :hover selector is used to select elements when you mouse over them.

    Example code

    .site-content p a:hover { color: #de6957; }

    Ref: https://www.w3schools.com/cssref/sel_hover.asp

    You may want to explore :visited and :active selectors too.

    Regards,
    Arteo

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to change the hyper links colors in the posts?’ is closed to new replies.