• Resolved wordpressdudu

    (@wordpressdudu)


    I am using a wishful-blog theme (free version) why do only half of my links appear blue and the rest of them are color black?

      I have added addiotional CSS:

    a:link {
    color: #0645AD;
    }
    ..but nothing changed

    here is an images showing the issue more specific: https://ibb.co/GCHL715

    • This topic was modified 4 years, 3 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Everything else WordPress topic

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @wordpressdudu

    Could you please share your page link so that I can help you in the right direction? ??

    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Moved to Fixing WordPress, this is not an Everything else WordPress topic. I’ve also moved the link to the link field.

    That field is only visible to logged in forum users and cannot be scrapped by search engines.

    Hi @wordpressdudu

    Your website has visited link color set as #000 that’s why some links that are already visited showing as black.

    The :visited CSS pseudo-class represents links that the user has already visited. It allows you to target visited links.

    There should be an option to change the color of the visited link in your theme settings. You can solve the issue from there or alternatively, you can use CSS to solve the issue.

    If you want to use CSS then please go to Appearance >> Customize >> Additional CSS section in your WordPress Admin Area and paste the below CSS there:

    a:visited {
        color: #0645AD;
    }

    Please let me know if you have any further questions. ??

    Thread Starter wordpressdudu

    (@wordpressdudu)

    that solved the issue. thank you ??

    Happy to help. ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Why do my links not appear all blue?’ is closed to new replies.