How to change font and color for visited linked cell
I am having problems to locate a solution that describes how to set styles for a linked cell (anchor pseudo classes).
We are using lots of tables with linked cells (URL links). The current default behavior is blue and underlined. I would like to have the usual linke behavior that an already visited link is in a different color (standard red).
Usually this is set with anchor pseudo classes:
How do I set this in ActiveWidgets?
We are using lots of tables with linked cells (URL links). The current default behavior is blue and underlined. I would like to have the usual linke behavior that an already visited link is in a different color (standard red).
Usually this is set with anchor pseudo classes:
a:link {color: #FF0000} /* unvisited link */
a:visited {color: #00FF00} /* visited link */
a:hover {color: #FF00FF} /* mouse over link */
a:active {color: #0000FF} /* selected link */
How do I set this in ActiveWidgets?
Andreas Guther
October 12,