Re: [css-d] Container shifts, one page to another

2011-10-26 Thread David Hucklesby
On 10/25/11 7:48 PM, Philippe Wittenbergh wrote: On Oct 26, 2011, at 7:52 AM, David Laakso wrote: 2/ html { min-height: 100%; margin-bottom: 1px; } Just fwiw, that won't work on IE 6, poor thing doesn't know quad about 'min-height'. FWIW: I don't think IE 6 needs this... -- Cordially,

Re: [css-d] Container shifts, one page to another

2011-10-26 Thread John
On Oct 26, 2011, at 9:48 AM, David Hucklesby wrote: On 10/25/11 7:48 PM, Philippe Wittenbergh wrote: On Oct 26, 2011, at 7:52 AM, David Laakso wrote: 2/ html { min-height: 100%; margin-bottom: 1px; } Just fwiw, that won't work on IE 6, poor thing doesn't know quad about

Re: [css-d] Container shifts, one page to another

2011-10-25 Thread John
On Oct 24, 2011, at 4:47 PM, Tom Livingston wrote: HTML{overflow-y: scroll;} is another option On Oct 24, 2011, at 3:52 PM, David Laakso wrote: See short page shift--- http://www.communitymx.com/content/article.cfm?cid=528a0 One fix is to force a scrollbar html { min-height: 100%;

Re: [css-d] Container shifts, one page to another

2011-10-25 Thread David Laakso
On 10/25/11 5:29 PM, John wrote: Testing on the windows browsers I have (IE6, FF7 Opera 11.51) HTML{overflow-y: scroll;} works, but html { min-height: 100%; margin-bottom: 1px; } appears not to work. Do I need to investigate this further or is it a case of sometimes one fix works while

Re: [css-d] Container shifts, one page to another

2011-10-25 Thread Philippe Wittenbergh
On Oct 26, 2011, at 7:52 AM, David Laakso wrote: 2/ html { min-height: 100%; margin-bottom: 1px; } Just fwiw, that won't work on IE 6, poor thing doesn't know quad about 'min-height'. Philippe -- Philippe Wittenbergh http://l-c-n.com/

[css-d] Container shifts, one page to another

2011-10-24 Thread John
http://coffeeonmars.com/testing/index.html http://coffeeonmars.com/testing/WPR_Wire.html When I load the two links above and go from one tab to the other, I see the content area shift to the left (going from the index page to the wpr_wire page) the only browswer that doesn't do this is Win IE

Re: [css-d] Container shifts, one page to another

2011-10-24 Thread Peter H.
El 25/10/2011, a las 00:11, John escribió: http://coffeeonmars.com/testing/index.html http://coffeeonmars.com/testing/WPR_Wire.html When I load the two links above and go from one tab to the other, I see the content area shift to the left (going from the index page to the wpr_wire

Re: [css-d] Container shifts, one page to another

2011-10-24 Thread David Laakso
On 10/24/11 6:11 PM, John wrote: http://coffeeonmars.com/testing/index.html http://coffeeonmars.com/testing/WPR_Wire.html When I load the two links above and go from one tab to the other, I see the content area shift to the left (going from the index page to the wpr_wire page) John See

Re: [css-d] Container shifts, one page to another

2011-10-24 Thread John
On Oct 24, 2011, at 3:52 PM, David Laakso wrote: See short page shift--- http://www.communitymx.com/content/article.cfm?cid=528a0 One fix is to force a scrollbar html { min-height: 100%; margin-bottom: 1px; } ~d FINALLY! A dumb problem I didn't cause! this was sorta cool while reading the

Re: [css-d] Container shifts, one page to another

2011-10-24 Thread John
On Oct 24, 2011, at 3:52 PM, David Laakso wrote: See short page shift--- http://www.communitymx.com/content/article.cfm?cid=528a0 One fix is to force a scrollbar html { min-height: 100%; margin-bottom: 1px; } ~d OK..for my page, inserting margin-bottom: 1px resulted in about a 10-pixel

Re: [css-d] Container shifts, one page to another

2011-10-24 Thread Tom Livingston
HTML{overflow-y: scroll;} is another option Sent from iOS 5 On Oct 24, 2011, at 7:38 PM, John j...@coffeeonmars.com wrote: On Oct 24, 2011, at 3:52 PM, David Laakso wrote: See short page shift--- http://www.communitymx.com/content/article.cfm?cid=528a0 One fix is to force a scrollbar

Re: [css-d] Container shifts, one page to another

2011-10-24 Thread John
On Oct 24, 2011, at 4:38 PM, John wrote: On Oct 24, 2011, at 3:52 PM, David Laakso wrote: See short page shift--- http://www.communitymx.com/content/article.cfm?cid=528a0 One fix is to force a scrollbar html { min-height: 100%; margin-bottom: 1px; } ~d OK..for my page, inserting

Re: [css-d] Container shifts, one page to another

2011-10-24 Thread John
On Oct 24, 2011, at 4:47 PM, Tom Livingston wrote: HTML{overflow-y: scroll;} is another option Sent from iOS 5 that does work...thank you, Tom. John __ css-discuss [css-d@lists.css-discuss.org]

Re: [css-d] Container shifts, one page to another

2011-10-24 Thread John
On Oct 24, 2011, at 3:52 PM, David Laakso wrote: One fix is to force a scrollbar html { min-height: 100%; margin-bottom: 1px; } OK..got this one to work, too...I put the code in the wrong spot. thank you! John __