Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

CSS Forum


You are currently viewing our CSS Forum as a guest. Please register to participate.
Login



Reply
Old 02-07-2008, 07:06 AM Firefox bugs
Novice Talker

Posts: 12
Name: mohammed
Trades: 0
Hi all

I had some issue in firefox. This first time to me that its work fine IE but not properly work in firefox. Is this a bug or some css issue I don't know. I tried to search on google but I found nothing.

I am posting here to get the perfect solution as I received in my all last post.

Whenever I refresh or load the page in firefox I saw some lines in firefox but when I switch the one window to that window all lines disappear magically.

I have attach the Image, what is the actually problem?

Thanks & Regards
Mohammed Sunely
Attached Images
File Type: jpg firefox.jpg (41.4 KB, 8 views)
msunely is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 02-07-2008, 07:29 AM Re: Firefox bugs
tripy's Avatar
Do not try this at home!

Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
Trades: 0
I have already seen problems like that, but generally with firefox version 1.0.x or 1.5.x

They are rendering bugs in the firefox display engine, and you cannot do much, except try to deactivate CSS rules one after one, to see if one rule in particular trigger the error.

Personally though, I never have seen this issue again since I'm on firefox 2.
Are you up to date, or do you still use the firefox 1/1.5 branch ?
__________________
Only a biker knows why a dog sticks his head out the window.
tripy is offline
Reply With Quote
View Public Profile Visit tripy's homepage!
 
Old 02-07-2008, 07:39 AM Re: Firefox bugs
Novice Talker

Posts: 12
Name: mohammed
Trades: 0
I have firefox 2.0, update version
__________________
Mohammed Sunely
Web Designer

Please login or register to view this content. Registration is FREE
msunely is offline
Reply With Quote
View Public Profile
 
Old 02-07-2008, 07:50 AM Re: Firefox bugs
tripy's Avatar
Do not try this at home!

Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
Trades: 0
Try to view your page with firefox 3 beta.
I know that the rendering engine had a major rewrite, and maybe this bug is gone.

At least, you would be sure that future versions are ok.

You could try with older versions too.
Here a links to "firefox portable". You can install them in separate directories, and they are isolated from your normal installation.

Firefox 1: http://prdownloads.sourceforge.net/p...s.exe?download
Firefox 1.5: http://downloads.sourceforge.net/por..._en-us.paf.exe
firefox 3 beta 2: http://downloads.sourceforge.net/por...f.exe?download

They all come from the http://www.portableapps.com web site, and I use them daily.
The only thing is that you cannot have 2 different versions of Firefox running at the same moment.
__________________
Only a biker knows why a dog sticks his head out the window.
tripy is offline
Reply With Quote
View Public Profile Visit tripy's homepage!
 
Old 02-07-2008, 03:54 PM Re: Firefox bugs
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
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.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 02-08-2008, 07:12 AM Re: Firefox bugs
Novice Talker

Posts: 12
Name: mohammed
Trades: 0
Thanks Tripy

I do what you say, deactivate CSS rule one by one, its a long procedure but solve my problem.

Its overflow that cause problem to me

thanks guys
__________________
Mohammed Sunely
Web Designer

Please login or register to view this content. Registration is FREE
msunely is offline
Reply With Quote
View Public Profile
 
Old 02-08-2008, 08:52 AM Re: Firefox bugs
tripy's Avatar
Do not try this at home!

Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
Trades: 0
Quote:
Originally Posted by LadynRed View Post
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.
__________________
Only a biker knows why a dog sticks his head out the window.

Last edited by tripy; 02-08-2008 at 08:56 AM..
tripy is offline
Reply With Quote
View Public Profile Visit tripy's homepage!
 
Old 02-08-2008, 10:42 AM Re: Firefox bugs
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
The thing is, Firefox devotees are not going to be using an antiquated version, we tend to keep up with the LATEST versions.

From viewing a LOT of people's code, I'm seeing a lot of OVERUSE of overflow: auto, height:auto; (which is rarely necessary), width: auto; and it's generally seen with newbies.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 02-08-2008, 11:17 AM Re: Firefox bugs
tripy's Avatar
Do not try this at home!

Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
Trades: 0
Quote:
Originally Posted by LadynRed View Post
The thing is, Firefox devotees are not going to be using an antiquated version
True, but as I work for an university, in a controlled environment, on restricted computers, we had the case where we had complaint that the pages where badly rendered.
And we had to ask the IT department to deploy FF2 on the 4'800 computers of the campus to solve it.

I agree that it's a special case, but it was just to assert that rendering bugs can occur, especially where the developments and evolutions are active.
__________________
Only a biker knows why a dog sticks his head out the window.
tripy is offline
Reply With Quote
View Public Profile Visit tripy's homepage!
 
Old 02-08-2008, 11:24 AM Re: Firefox bugs
LadynRed's Avatar
Defies a Status

Posts: 10,016
Location: Tennessee
Trades: 0
Quote:
it was just to assert that rendering bugs can occur, especially where the developments and evolutions are active.
I won't argue with that, we all know it's true

Universities can be a special case, I've had to deal with similar lock-downs at a university hospital, it can try your patience !
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Firefox bugs
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.35720 seconds with 13 queries