Quote:
Originally Posted by LadynRed
In order to actually see what's going on, we really need to see ALL the code. I can't tell from the image you posted, but there are so few problems with Firefox that I'm betting it's NOT FF but the code somewhere.
|
Look at those screenshots.
That one was taken in firefox 1:

and this one in firefox 1.5:
and this in firefox 2 (ff 3 behave the same):

Neither ff1 nor ff1.5 render it correctly.
The "recherche par nom" is a <span>, into a <legend> in a <fieldset> element.
It's in a span, because we need to catch click on it, and IE (6 and 7) javascript cannot access a <legend> element.
So, we put a span with a specific "rel=" value to find it via a getElementsByTagName().
Into the fieldset, there is a <form> with an input type text, and a link to submit the form.
The <fieldset> itself is into a div.
The css rules are the same, but the FF1/1.5 have a bug in the position of the content of the text field.
Here is the CSS applied to the input field:
Code:
body {
color:black;
font-family:Verdana,Helvetica,Arial,Geneva,Swiss,SunSans-Regular,sans-serif;
font-size:62.5%;
}
There are no positioning done in css, everything follows the normal flow.
I can not give you either access to the page (intranet) nor to the source (it's generated HTML via javascript from a XML data stream generated by an Oracle pl/sql procedure... Quite difficult to isolate).
But for me, this is a rendering bug.