FutureQuest, Inc. FutureQuest, Inc. FutureQuest, Inc.

FutureQuest, Inc.
Go Back   FutureQuest Community > General Site Owner Support (All may read/respond) > General Coding/Development
User Name
Password  Lost PW

Reply
 
Thread Tools Search this Thread Display Modes
Old 09-18-2001, 02:11 PM   Postid: 53428
morrisdan1
Registered User

Forum Notability:
75 pts: Helpful Contributor
[Post Feedback]
 
Join Date: Dec 2000
Posts: 214
Questions about the Netscape browser

First, for some reasons the website's visited link capacity seemed to have disappeared altogether within the Netspape 4.7x (ie. 4.78) browser. I know for sure that the codes are not the problem cause it still works using the Internet Explorer and when using Netscape 6.1. I've gone over Netscape 4.78's preference more than once to ensure that nothing was changed by accident or something. But that doesn't seem to be the case. Is this something done from the Netscape's end that they decided not to implement the "Visited link color" capablity or something ?

And because of the Netscape 4.78's problem mentioned above. It led me into thinking that maybe I have to start using Netscape 6. You know, to keep up to date and all that.

However, there seems to be a different problem when using Netscape 6. Do you know the <hr> tag ? That creates a line across the screen. For some reasons, it seems to create a whole blank line in the front of the <hr> line ?

And that what looked neat in Netscape 4.78 and Internet Explorer. That is there'll be a line or a sentence in the previous line, with the <hr> line following it. However, in Netscape 6 there'll be a whole line skipped, then the <hr> line would be shown ?

Anyone have any advice on how to get around this Netscape 6 <hr> line problem ? Thanks !
morrisdan1 is offline   Reply With Quote
Old 09-18-2001, 02:59 PM   Postid: 53431
JonnyBlaze
Registered User

Forum Notability:
10 pts: User-friendly
[Post Feedback]
 
Join Date: Aug 2001
Location: Bay Area
Posts: 65
Hi Dan,

Are you talking about on your own site? If yes, I tried your site on NS 4.76 and 4.72 and the visited link colors work on both. I have tried NS 6.1, and was not happy with it all, so can't help you on that end. Not really sure what is going on with NS 4.78. I don't currently use that version. I'm sure someone here will have some advice, they always do:-)

Sorry couldn't help wih the NS 6.1 question. Take care!

Jonny
JonnyBlaze is offline   Reply With Quote
Old 09-18-2001, 04:47 PM   Postid: 53440
PaulKroll
Mostly Harmless
 
PaulKroll's Avatar

Forum Notability:
367 pts: Community Guru
[Post Feedback]
 
Join Date: Jan 2000
Location: Chicago, IL,USA
Posts: 1,866
The 0.9.3 version of Mozilla (on which NS 6.1 is built) shows that page pretty close to identically to IE 5.5., and they've got a later release (0.9.4) which has Yet More Bugs Fixed, so it'd be worth taking a look. I'd delete with extreme prejudice any previous Netscape 6 install before installing Mozilla.

http://www.mozilla.com/

NS 4.7x has many, many problems, but I pulled down copies of your page and CSS file and was able to make the visited links change colors.... the css file that your page points to currently doesn't have a color setting for visited links, it only says text-decoration: underline.
PaulKroll is offline   Reply With Quote
Old 09-25-2001, 06:36 PM   Postid: 53758
morrisdan1
Registered User

Forum Notability:
75 pts: Helpful Contributor
[Post Feedback]
 
Join Date: Dec 2000
Posts: 214
Ok, thanks everyone !

Now as for this part:

"the css file that your page points to currently doesn't have a color setting for visited links, it only says text-decoration: underline."

After some modifications, I currently have the css sheet written as the following:

A:link { color:#000099; text-decoration: underline }
A:visited { color:#ff0000; text-decoration: underline }
A:hover { color:#0000ff; text-decoration: underline }

That still didn't do the trick. Anyone have any ideas or suggestions on what else I could or might do to have the visited link color to work again ? Let me know. Thanks !

Sincerely,
--Dan
morrisdan1 is offline   Reply With Quote
Old 09-25-2001, 06:41 PM   Postid: 53761
sheila
Site Owner
 
sheila's Avatar

Forum Notability:
0 pts: Even-handed
[Post Feedback]
 
Join Date: Aug 1999
Location: Metro Los Angeles Area
Posts: 7,398
Dan, try adding semicolons after the word "underline", like this:

A:link { color:#000099; text-decoration: underline; }
A:visited { color:#ff0000; text-decoration: underline; }
A:hover { color:#0000ff; text-decoration: underline; }

Does that help???
__________________
sheila
http://www.thinkspot.net/sheilaruns/
sheila is offline   Reply With Quote
Old 09-25-2001, 09:28 PM   Postid: 53769
Rich
Merchant Rep
 
Rich's Avatar

Forum Notability:
153 pts: Ambassador of Goodwill
[Post Feedback]
 
Join Date: Nov 1998
Location: Indiana, USA
Posts: 1,658
hmmm...did these "stop working" when you switched to using style sheets? Are you sure :visited and :hover are supported in Netscape 4.x?

Rich
Rich is offline   Reply With Quote
Old 09-26-2001, 01:48 AM   Postid: 53781
PaulKroll
Mostly Harmless
 
PaulKroll's Avatar

Forum Notability:
367 pts: Community Guru
[Post Feedback]
 
Join Date: Jan 2000
Location: Chicago, IL,USA
Posts: 1,866
Hey, I wasn't kidding before: visited links, style sheets: worked for me in Netscape 4.7... something. .75 or something. I dunno. It's late and I'm only vaguely concious.

Now Hover... that I doubt will work in NS 4.7x no matter what 'cha do.
PaulKroll is offline   Reply With Quote
Old 09-26-2001, 02:22 AM   Postid: 53782
dank
Registered User

Forum Notability:
410 pts: Community Guru
[Post Feedback]
 
Join Date: Mar 2000
Location: MWV
Posts: 3,986
Yeah, link and visited should work fine (aside from Netscape's usual CSS issues of breaking down inside nested tables and what not), but hover was an IE5 introduction. Does Netscape 6 support it?

Dan
dank is offline   Reply With Quote
Old 09-26-2001, 09:22 AM   Postid: 53792
sheila
Site Owner
 
sheila's Avatar

Forum Notability:
0 pts: Even-handed
[Post Feedback]
 
Join Date: Aug 1999
Location: Metro Los Angeles Area
Posts: 7,398
Well NS 6 does suppport hover. And it is part of the CSS standards. NS 6 is doing a good job of support the standards.
__________________
sheila
http://www.thinkspot.net/sheilaruns/
sheila is offline   Reply With Quote
Old 09-26-2001, 05:54 PM   Postid: 53815
morrisdan1
Registered User

Forum Notability:
75 pts: Helpful Contributor
[Post Feedback]
 
Join Date: Dec 2000
Posts: 214
Hello everyone,

First, thanks again ! Secondly, I'm aware that some of you had stated that the visited link color worked when using your Netscape 4.7x browsers. The thing here is that it still doesn't work when using my Netscape 4.78 browser.

I'm pretty much sure that the visited link color used to work within my Netscape 4.7x browsers. I do not know what prompted it to stop working ?

Not too long ago, I downloaded some java plug-ins in order for java to work in Netscape 6.x. Could that by any chance be the problem ? One reason is that I thought of this cause of the time-frame. It was close to the time I noticed that the visited link color stopped working in Netscape 4.7x.

I also tried removing the style sheet from a page altogether and the visited link color still didn't work. Tried doing it in the following page (it's a temporary page, thus why naming it animtions.html)

http://www.dansbanners.com/animtions.html

Also, tried adding the semicolons after the word "underline" and that didn't work either.

So, what's next ? Other ideas or suggestions please ? Thanks again in advance !
morrisdan1 is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 visitors)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -4. The time now is 02:07 PM.


Running on vBulletin®
Copyright © 2000 - 2013, Jelsoft Enterprises Ltd.
Hosted & Administrated by FutureQuest, Inc.
Images & content copyright © 1998-2013 FutureQuest, Inc.
FutureQuest, Inc.