473,611 Members | 2,236 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

a:visited not working in Mozilla or Firefox

DM
I searched on this topic. Found others who mentioned it, but no
solution. I can't seem to get visited links to appear in a different
color in Mozilla or Firefox on the PC. It works fine in IE. My CSS is
copied below. Any help would be greatly appreciated.

Thanks

DM
td#footer a:link{
border-bottom: solid 1px #FFFFFF !important;
color: #FFFFFF !important;
text-decoration: none !important;
}
td#footer a:link:active,
td#footer a:visited:activ e{
border-bottom: solid 1px #FFFFFF !important;
color: #FFFFFF !important;
text-decoration: none !important;
}
td#footer a:visited{
border-bottom: solid 1px #FFCC66 !important;
color: #FFCC66 !important;
text-decoration: none !important;
}
td#footer a:link:hover,
td#footer a:visited:hover {
border-bottom: none !important;
color: #00FF33 !important;
text-decoration: none !important;
}
Jul 24 '05 #1
8 21720
DM skrev:
I searched on this topic. Found others who mentioned it, but no
solution. I can't seem to get visited links to appear in a different
color in Mozilla or Firefox on the PC.


The order must be
link
visited
hover
active

http://www.w3.org/TR/CSS21/selector.html#x35
--
Knud
Topposter du svar, så ryger du på min ignoreringslist e.
Svar under det du citerer og citer kun det du svarer på - tak.
http://usenet.dk/netikette/citatteknik.html
Jul 24 '05 #2
DM
Knud Gert Ellentoft wrote:
DM skrev:

I searched on this topic. Found others who mentioned it, but no
solution. I can't seem to get visited links to appear in a different
color in Mozilla or Firefox on the PC.

The order must be
link
visited
hover
active

http://www.w3.org/TR/CSS21/selector.html#x35


I tried changing it (see code below), but that doesn't work either. The code
below does not work in Mozilla or Firefox at my organization. It works fine in IE.

I've also noticed that on www.yahoo.com, www.cnn.com, www.taxes.ca.gov visited
links change color in IE 6, but not in Mozilla 1.7.3 or Firefox 1.0.2 for the PC.

I would be grateful to anyone who can shed some light on this.

td#footer a:link{
border-bottom: solid 1px #FFFFFF;
color: #FFFFFF;
text-decoration: none;
}
td#footer a:visited{
border-bottom: solid 1px #FFCC66;
color: #FFCC66;
text-decoration: none;
}
td#footer a:link:hover,
td#footer a:visited:hover {
border-bottom: none;
color: #00FF33;
text-decoration: none;
}
td#footer a:link:active,
td#footer a:visited:activ e{
border-bottom: solid 1px #FFFFFF;
color: #FFFFFF;
text-decoration: none;
}
Jul 24 '05 #3
On Wed, 06 Apr 2005 14:19:39 -0700, DM <sp*****@devnu1 1.com> wrote:
The order must be
link
visited
hover
active

http://www.w3.org/TR/CSS21/selector.html#x35


I tried changing it (see code below), but that doesn't work either.


The most important part of the order is to place hover below visited.
As you originally had it, it still wouldn't cause the problem you
describe.

Can you post a URL to the whole page ? It's not always possible to
debug fragments in isolation.
Jul 24 '05 #4
DM skrev:
I tried changing it (see code below), but that doesn't work either. The code
below does not work in Mozilla or Firefox at my organization. It works fine in IE


Read the link I posted, how it must be written,
http://www.w3.org/TR/CSS21/selector.html#x35

And validate your css.
http://jigsaw.w3.org/css-validator/
--
Knud
Topposter du svar, så ryger du på min ignoreringslist e.
Svar under det du citerer og citer kun det du svarer på - tak.
http://usenet.dk/netikette/citatteknik.html
Jul 24 '05 #5
DM
Knud Gert Ellentoft wrote:
DM skrev:

I tried changing it (see code below), but that doesn't work either. The code
below does not work in Mozilla or Firefox at my organization. It works fine in IE

Read the link I posted, how it must be written,
http://www.w3.org/TR/CSS21/selector.html#x35

And validate your css.
http://jigsaw.w3.org/css-validator/


My CSS and HTML validate.

I also tried this code:

a:link{
color: #336699;
text-decoration: underline;
}
a:visited{
color: #993366;
text-decoration: underline;
}
a:hover{
color: #66CCFF;
text-decoration: none;
}
a:active{
color: #FF6600;
text-decoration: none;
}

It produces the same result. Other people using Mozilla and Firefox on other
computers apparantly are finding that the visited links DO change color. So this
is specific to certain machines.

Browsers on my machine are set to use the colors specified by the webpage. Is
there some other config setting that could affect this?
Jul 24 '05 #6
DM <sp*****@devnu1 1.com> wrote:
Other people using Mozilla and Firefox on other
computers apparantly are finding that the visited links DO change color. So this
is specific to certain machines.

Browsers on my machine are set to use the colors specified by the webpage. Is
there some other config setting that could affect this?


Tools > Options > Privacy > History
Remember visited pages for the last [ ] days

If that's set to zero than the browser keeps no record of which pages
have been visited and hence never used the :visited styles.

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <st***@pugh.net > <http://steve.pugh.net/>
Jul 24 '05 #7
Gazing into my crystal ball I observed DM <sp*****@devnu1 1.com> writing
in news:42******** *************** @news.cablerock et.com:
It produces the same result. Other people using Mozilla and Firefox on
other computers apparantly are finding that the visited links DO change
color. So this is specific to certain machines.

Browsers on my machine are set to use the colors specified by the
webpage. Is there some other config setting that could affect this?


Have you cleared your cache?

--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Jul 24 '05 #8
DM
Steve Pugh wrote:
DM <sp*****@devnu1 1.com> wrote:

Other people using Mozilla and Firefox on other
computers apparantly are finding that the visited links DO change color. So this
is specific to certain machines.

Browsers on my machine are set to use the colors specified by the webpage. Is
there some other config setting that could affect this?

Tools > Options > Privacy > History
Remember visited pages for the last [ ] days

If that's set to zero than the browser keeps no record of which pages
have been visited and hence never used the :visited styles.

Steve


That is the solution.

Thank you.
Jul 24 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
4987
by: Gregory Piñero | last post by:
Hi guys, I'm trying to run this statement: os.system(r'"C:\Program Files\Mozilla Firefox\firefox.exe"' + ' "www.blendedtechnologies.com"') The goal is to have firefox open to that website. When I type r'"C:\Program Files\Mozilla Firefox\firefox.exe"' + '
3
6986
by: The Bicycling Guitarist | last post by:
http://www.TheBicyclingGuitarist.net/css/index.css I have red nav buttons that turn blue when hovered over and turn purple after being visited. The red and blue work in FireFox, but not the visited color. How can I fix this? It's always worked in MSIE cough cough. It's for my index page http://www.TheBicyclingGuitarist.net/index.htm
9
4092
by: DM | last post by:
I searched on this topic. Found others who mentioned it, but no solution. I can't seem to get visited links to appear in a different color in Mozilla or Firefox on the PC. It works fine in IE. My CSS is copied below. Any help would be greatly appreciated. Thanks DM
2
5038
by: joeandtel | last post by:
Is there a way to check if a link has been visited using JavaScript? I have a table of data and the front of each row has a link to another page. Of course the browser knows if a link has been visited and changes the color of the link, but I would like to change the background of each row that has been visited. Is there a way to read the visited status of a link using JavaScript?
6
14443
by: Mark Olbert | last post by:
The doPostBack javascript functioning is not submitting the page when called by linkbuttons (or an autopostback checkbox, for that matter). I'm aware of a problem with Netscape browsers and the postback code, but I have a workaround for that installed (and it looks like the code generated by ASP.NET when it renders the page does the same thing, namely, setting document<). However, the problem still exists under firefox. Has anyone come...
49
3960
by: Atul Chaturvedi | last post by:
If we use ASP.NET 2.0 Login Control, we are unable to click on Login and Reset Buttons on Safari running on Apple Mac OS X Version 10.3.2 . How can i resolve the problem.
1
3144
by: ajaysoniji | last post by:
Hi, I am using this code to read the option values from a select option. I am getting the reference of that select option in arg1. Its working fine with mozilla firefox but not with Internet Explorer. It gives the lenth but failing to read the arguments(Shown in bold). It gives the alert Internet Explorer 4 for IE and Netscape 5 for Mozilla firefox for the alert in line 4. Please Suggest as soon as possible how I can read the values of the...
1
2305
by: srinivasreddypn | last post by:
Hello everybody, my css code for links in html page is a:link { color: #EC6F84; } a:visited
1
1543
by: prasad9490024564 | last post by:
Hi Team, We are developing crossbrowsing type application with asp.net2.0 In my page i am having server side label control <asp:Label id="Label1" runat="server" Width="100px" >I am quite a bit of text, overflowing and making my label wrap. If I could set the width on this control, I’d be mighty happy. </asp:Label>
0
1107
by: prasad9490024564 | last post by:
Hi Team, We are developing crossbrowsing type application with asp.net2.0 In my page i am having server side label control <asp:Label id="Label1" runat="server" Width="100px" >I am quite a bit of text, overflowing and making my label wrap. If I could set the width on this control, I’d be mighty happy. </asp:Label>
0
8097
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8596
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8561
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8240
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8411
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7038
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
2546
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1692
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1411
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.