Tagged Questions

Version 2.0 of the Mozilla Firefox browser, which was released on 24 October 2006. This version was supported until 18 December 2008.

learn more… | top users | synonyms

1
vote
4answers
121 views

Which Versions of FireFox Should I Support?

I have recently built a template for a website that I see looks slightly different in different versions of FireFox. I was wondering, as a rule of thumb, which versions of FireFox are worth ...
1
vote
0answers
42 views

Supporting mulitple versions of Firefox (2.*, 3.*). What should I test?

I have a situation where I did web development (wicket running on tomcat) on Firefox 3.6.3 and now need to support Firefox 2.0 and Firefox 3.6.3. Do you have any tips on what I should expect to ...
1
vote
2answers
360 views

Wrapping text with css

I have the following html: <label class="description">Label Text</label><input type="password" /> And the css styles are: fieldset span.formrow label.description { width: ...
1
vote
1answer
202 views

Firefox 2 freezes when trying cross-browser inline-block trick

I am trying to design a form that uses the CSS inline-block display value for a table-like arrangement. I know that some browsers including Firefox 2 don't know how to handle it, so I used this method ...
0
votes
0answers
22 views

YUI3 event delegation not working in FF2

I am using YUI 3.3.0. Event delegation not working in FF2. Any clue ? Thanks in advance. container.delegate("click", function(e) { alert("hi"); //alerts except in FF2 },"td, li");
0
votes
0answers
38 views

Mouse not getting through multiple SWFs in FireFox 2

NOTE: This problem only occurs in FireFox 2. I'm testing in FF 2.0.0.20 I am trying to load multiple SFWs using object tags here. The html contains (only) the following simple code: <html> ...
0
votes
1answer
263 views

In Firefox 2, usage of overflow:hidden makes other divs overlap current div

When I use overflow:hidden for div which is positioned absolute (for menu), other div overlaps. Here is the code. It works fine in FF3. Any help appreciated. Please note that html should be as it is. ...
0
votes
1answer
83 views

<UL> displaying incorrectly - works fine in all browsers except Firefox 2 (screenshots included)

OK, here's a screenshot of what it's SUPPOSED to look like: And here's a screenshot of how it looks in Firefox 2 (on both Mac & PC)... Every other browser gets it right (even IE6?!). The ...
0
votes
1answer
149 views

Disabling autocomplete in Firefox 2

The ff. works in Firefox 3 but not in Firefox 2. Anyone know why and if there is a work-around? <input name="pin" type="password" autocomplete="off" />
0
votes
3answers
1k views

Word wrap in Firefox 2.0

Word-wrap is not working in FF 2.0. I know FF above 2.0 supports this word-wrap. But I want to know is there any alternatives do fix this issue for FF2.0. It works fine with all IE versions. ...
0
votes
1answer
117 views

How can I make this button image appear in Firefox 2.0 the same as it does in IE7?

I have a CSS file for my anchor links defined below. This works fine for IE7 but when I open the page in Firefox the button image is longer. I Googled to see if Firefox has a background position bug ...
0
votes
3answers
3k views

Firefox 1.5 and 2 css absolute position bug

I have the following html/css that is causing problems in Firefox 1.5 and 2, but is working correctly in IE6/7/8, Safari, Chrome, Opera and Firefox 1 and 3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML ...