Hello, srv:
At first glance, it seems a CSS problem, there are many changes on
it after Netscape 4. I downloaded the full page with mozilla and
removed the CSS file from your code. If you do the same, you will see
the webpage "looks" good (there are another problems).
W3C CSS Validation Service
http://jigsaw.w3.org/css-validator/validator-upload.html
Errors
URI : file://localhost/iseek.css
* Line: 13 Context : .radiob
Invalid number : borderattempt to find a semi-colon before the
property name. add it
* Line: 13 Context : .radiob
Invalid number : background-colornone is not a color value :
none white
* Line: 14 Context : .radiob
Invalid number : colornone is not a color value : none white
* Line: 474 Context : .sf
Parse Error - .date {font-family: verdana, geneva, arial, sans-serif;
font-size: 11.75px; font-weight: bold; color: #ff5500; }
I have fixed those errors, but your error is here:
input,textarea, select {
color : #000000;
font: normal 11px Verdana, Arial, Helvetica, sans-serif;
border-color : #000000;
background-color : #e5e5e5;
border: solid 1px #666666
}
Remove the last line to be:
input,textarea, select {
color : #000000;
font: normal 11px Verdana, Arial, Helvetica, sans-serif;
border-color : #000000;
background-color : #e5e5e5;
border: solid 1px #666666
}
This doesn't solves all your Netscape related problems, but the one
you ask in your question.
Regards.
P.S.I have also checked your website with Opera and looks good, but
there are some javascript problems. (Drop down menus don't work). |
Clarification of Answer by
joseleon-ga
on
07 Aug 2002 01:24 PDT
input,textarea, select {
color : #000000;
font: normal 11px Verdana, Arial, Helvetica, sans-serif;
border-color : #000000;
background-color : #e5e5e5;
}
Sorry, your CSS element must be this way, without the last line.
Regards.
|
Clarification of Answer by
joseleon-ga
on
07 Aug 2002 06:15 PDT
Hello, srv:
The problem with that pixel is that Netscape 4 is not able to process
correctly that CSS extension and is not able to render well the page,
that's all, try it and you will see. This won't fix the problem with
dropdown menus, it's a complete different problem, the javascript you
used is not fully compliant with Netscape 4 or Opera. You will need to
contact your script provider or use another menu script which work on
every browser. If you change this line on your CSS the web will
*render* well on Netscape (this was your question), this doesn't mean
will *work* well on Netscape, you must thoroughly test all your site
with Netscape 4 to see if works, this is a big task you must perform.
I normally test my sites with Netscape while building to avoid that
situation.
Regards.
|