Color of visited links
Color of visited links
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.
Hi richk,
you must change your Standard CSS = frontend.css (ADMIN area).
There you will find such stuff like:
That's your way to heaven
you must change your Standard CSS = frontend.css (ADMIN area).
There you will find such stuff like:
Code: Select all
a, a:link, a:visited, a:active {
color: #FF3300;
text-decoration: none;
}
a:hover {
color: #FF3300;
text-decoration: underline;
}
Hi richk,
i think the best is, to change the following code of the frontend.css in the following way:
Now you are able, to give each sequence an owne "optic"
To outcomment an element, use (for example):
text-decoration: none; // underline;
or for some lines:
/*
a:hover {
color: #FF3300;
text-decoration: underline;
}
*/
i think the best is, to change the following code of the frontend.css in the following way:
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;
}
To outcomment an element, use (for example):
text-decoration: none; // underline;
or for some lines:
/*
a:hover {
color: #FF3300;
text-decoration: underline;
}
*/