It seems when you do not have a sidebar first (left sidebar) and try to use the Sidebar last block - the nice little 'indent' feature disappears when the left region collapses....the result is that the sidebar last region becomes much larger - the block drops to the bottom of the page - and it loses all its class attributes - i.e. title bar / background /etc... using FF3 browser.

Comments

rene_w’s picture

Same happened to me when I tried to move all blocks to the right.

davidndrpl’s picture

Same to meeee!!

I need help.. did anyone find a solution ??

dnaromance’s picture

Hi all,

Do you all have access to CSS? If yes, then try this:

/**************************/
/* TWO COLUMN LAYOUT */
/* (Main Content:Sidebar) */
/**************************/

body.layout-main-last #content-wrapper {
margin: 20px 20px 0 0;
position: relative;
width: 470px;
z-index: 1;
}

body.layout-main-last #sidebar-last {
background-color: transparent;
margin: 20px 0 0 0;
width: 470px;
}

See, the width for both content and sidebar last is equivalent length, so what I do is set the width property, and that's all. e.g., width: 250px; or width: 21%;

You all can try out, and I'm ready to help :)