Color of visited links
Posted: Tue 26. Oct 2004, 23:15
Can someone tell me how to make the color of visited links change on my web pages? I tried setting the visited links box on my page layout but it doesn't seem to work for me.
The phpwcms support forum will help to find answers to your questions. The small but strong community is here since more than 10 years.
https://forum.phpwcms.org/
Code: Select all
a, a:link, a:visited, a:active {
color: #FF3300;
text-decoration: none;
}
a:hover {
color: #FF3300;
text-decoration: underline;
}
Code: Select all
a {
color: #FF3300;
text-decoration: none;
}
a:link {
color: #FF3300;
text-decoration: none;
}
a:visited {
color: #FF3300;
text-decoration: none;
}
a:active {
color: #FF3300;
text-decoration: none;
}
a:hover {
color: #FF3300;
text-decoration: underline;
}