Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Right master column to left content column in responsive design Re: Right master column to left content column in responsive design

#122937
wolfcry911
Participant

fixed positioning is based on the viewport. You want to center your wrap, so do so with auto margins as you have. Float the the #container left, as you tried. And the #sidebar will remain position:fixed; but to place it correct use left: 50%; putting the left edge at the center of the screen, and then use left margin to push it over to the right side of content (try 260px).