Re: [css-d] is this possible in RWD?

2015-02-20 Thread David Hucklesby
[...] On 2/17/15 1:54 PM, Sara Haradhvala wrote: Am wondering - is it possible to have a responsive layout that has a main column and an optional sidebar where text from the main column flows under the sidebar - but where the sidebar drops under the main column in mobile view? Not using flexbox

Re: [css-d] is this possible in RWD?

2015-02-20 Thread Sara Haradhvala
Hi David, Thanks - that's an interesting solution - I would never have thought of using table-caption for this! For the moment, I ended up using flexbox - only on mobile so IE9 didn't really matter. It seems good, but may have issues on older androids (before 4.4) - if that turns out to be a

Re: [css-d] is this possible in RWD?

2015-02-18 Thread David Hucklesby
On 2/17/15 4:50 PM, Sara Haradhvala wrote: doesn't that require the sidebar div to come first in the HTML? If so, then on mobile, it will also come first. Or is there another option? -- Sara Haradhvala Manager, Harlen Web Consulting LLC s...@harlenweb.com On Feb 17, 2015, at 6:43 PM, David

Re: [css-d] is this possible in RWD?

2015-02-17 Thread Karl DeSaulniers
I would say just an @media and swap z-index. Best, Karl DeSaulniers Design Drumm http://designdrumm.com On Feb 17, 2015, at 3:54 PM, Sara Haradhvala har...@comcast.net wrote: Am wondering - is it possible to have a responsive layout that has a main column and an optional sidebar where

Re: [css-d] is this possible in RWD?

2015-02-17 Thread David Hucklesby
On 2/17/15 1:54 PM, Sara Haradhvala wrote: Am wondering - is it possible to have a responsive layout that has a main column and an optional sidebar where text from the main column flows under the sidebar - but where the sidebar drops under the main column in mobile view? Not using flexbox (need

[css-d] is this possible in RWD?

2015-02-17 Thread Sara Haradhvala
Am wondering - is it possible to have a responsive layout that has a main column and an optional sidebar where text from the main column flows under the sidebar - but where the sidebar drops under the main column in mobile view? Not using flexbox (need to support IE8 and IE9). Is JS necessary?