• How can I change the red by default in visited links?

    Style.css is like this right now:

    a {
    	color: #1db8f0;
    	outline: none;
    	-webkit-transition: all 0.14s ease 0s; 
    	   -moz-transition: all 0.14s ease 0s; 
    		 -o-transition: all 0.14s ease 0s; 
    	}
    a:visited {
    	color: #1db8f0;
    	}
    a:hover,
    a:focus,
    a:active {
    	color: #333;
    	}

    In the console I can see the red color comes from: /wp-content/themes/hiero/fonts/athemes-glyphs.eot.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello there,

    You can use this CSS code to add to your site from Appearance > Customize > Additional CSS.

    
    a:visited {
      color: #fff000;
    }
    

    I hope this helps.

    Please let us know in a new topic if you have any further questions, or if we can provide you with any other assistance.

    Regards,
    Kharis

    Thread Starter jcbsep

    (@jcbsep)

    Hi @kharisblank

    That doesn’t work for me as the post’s title get the same blue color.

    I only want to change the color of the visited links, but for some reason that css it’s not working properly.

    Hello there,

    Try this code:

    
    a:visited {
      color: #fff000;
    }
    

    Let me know how it goes.

    Regards,
    Kharis

    Thread Starter jcbsep

    (@jcbsep)

    That’s the same code than above @kharisblank

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Visited link colors’ is closed to new replies.