Active
Project:
Waffles
Version:
6.x-1.3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
12 Mar 2009 at 19:36 UTC
Updated:
25 Apr 2009 at 03:45 UTC
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
Comment #1
rene_w commentedSame happened to me when I tried to move all blocks to the right.
Comment #2
davidndrpl commentedSame to meeee!!
I need help.. did anyone find a solution ??
Comment #3
dnaromance commentedHi 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 :)