Hi,
I've just realized that visited links in Joomla Modules do not take the color on mouse hover.
Looking at TT generated template.css I've seen, in line 960, this strange section that doesn't make any sense to me:
.ttr_block a:hover:not(.btn), .ttr_block a:hover:not(.btn)
{
...
color:#xxxxxx;
which most probably should be
.ttr_block a:hover:not(.btn), .ttr_block a:visited:hover:not(.btn)
{
...
color:#xxxxxx;
Is it a bug or am I doing something wrong?
Thank you