I am trying to solve this problem since a while but no luck. Please help.

a:visited function works fine on my IE but not on mozilla. It has no effect on Mozilla. Css class is

            ul#menu1 li a:link, a:visited { 
    display: block; height: 18px; padding: 5px 0 6px 15px;
    text-decoration: none; clear: both; color: #666; 
             }

Thanks

link|improve this question

68% accept rate
What version of Firefox? – thirtydot Mar 7 '11 at 15:47
@thirtydot: its 3.6.14 – Gendaful Mar 7 '11 at 16:10
I am using mozilla 3.6.14, so i read it somewhere that versions above 3.6.12 doesnt support the visited feature because of security reasons.Is it true? – Gendaful Mar 7 '11 at 16:14
feedback

4 Answers

up vote 7 down vote accepted

The visited style has been removed from Firefox (and most other browsers) in recent versions due to a security issue with it.

The problem is that a malicious web site could work out your browsing history by using it - they would set a visited colour, produce a load of URLs (even hidden ones so the user doesn't know about it), and check their colour. It caused quite a bit of noise in browser security circles a couple of years ago.

The visited feature can be switched back on again in Firefox, by going to the security preferences, but it is disabled by default, and most users will have it switched off.

See here for more info on the problem and how Firefox went about fixing it: http://blog.mozilla.com/security/2010/03/31/plugging-the-css-history-leak/

link|improve this answer
+1, I thought it would end up being this. – thirtydot Mar 8 '11 at 10:41
feedback

Try changing your order so that it is :link, :visited, :hover, :active

Also ensure that your Mozilla options are set to remember your browsing history. If it doesn't remember the history, it can't know what you have visited or not.

Edit: It doesn't look like Mozilla has disabled the ability to differentiate visited links, but it appears that they have limited what properties you can use. See here for more details.

link|improve this answer
It is the same as above.I am using mozilla 3.6.14, so i read it somewhere that versions above 3.6.12 doesnt support the visited feature because of security reasons.Is it true? – Gendaful Mar 7 '11 at 16:13
1  
@user515990, a quick google search showed that they still support the feature, just in a limited capacity. See update. – Brandon Mar 7 '11 at 16:29
Oh, is it, I tried to search for the link, pls share incase you have it with you. – Gendaful Mar 7 '11 at 17:23
feedback

Try to change you selector like that:

#menu1 a:link, #menu1 a:visited { ... }

It should apply the css for all a:visited or a:link in the element where the id is menu1

link|improve this answer
I tried this one, but no luck – Gendaful Mar 7 '11 at 16:12
feedback

just make your selector more specific

ul#menu1 li a:link, ul#menu1 li a:visited { 
  //code here  
}

Note that I added ul#menu1 li in front of a:visited

what you have at the moment doesn't specify that the a:visited in question is the one inside the ul#menu1 li tag

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.