Answers for "how to customize visited link colour in wordpress"

CSS
1

css url do not change color of visited links

a {
    text-decoration: none;
}

a:link, a:visited {
    color: blue;
}

a:hover {
    color: red;
}
Posted by: Guest on May-29-2020
0

change link color in wordpress

.entry-content a {
    color: red;
}
.entry-content a:hover {
    color: blue;
}
Posted by: Guest on August-01-2020

Code answers related to "how to customize visited link colour in wordpress"

Browse Popular Code Answers by Language