Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a fieldset- let's call it "foo"- in a form that is conditionally displayed based on whether a checkbox is checked or not. If the checkbox is clicked, then a javascript function is called which sets the display property of "foo" to "block" or "none".

In IE8 and FF a displayed "foo" correctly causes the fieldset below it to move down in the flow of the page and make space for "foo". However, in IE7, when "foo"'s display property is "block", it displays directly on top of the fieldset below it.

Why would this be happening?

share|improve this question

2 Answers

up vote 2 down vote accepted

What is the display style of all of the other fieldsets? What I mean is, in FF or IE or whatever, inspect them and see what the computed style is for display for them. That may give you/us some further insight into what is happening.

Oh, also check the positioning type attributes, just for giggles.

share|improve this answer
This set me on the right track...I realized that the fieldset was moving but the elements within were not. I set their position style to static and now everything works...Thanks! – dmr May 26 '10 at 19:15
No problem, dmr! Glad you were able to track it down. – Matt Dawdy May 26 '10 at 19:55

This isn't exactly an answer to your specific question, but are fieldsets able to have an empty string as their display property? If so, try using that rather than 'block'. Dunno if that helps at all.

share|improve this answer
No, it didn't help :( – dmr May 26 '10 at 18:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.