I'm using 4.7 and have added some block regions for additional sidebars (goal being that I can have 2 left or right sidebars, one of which is only visible to registered users.)
I'm sure my problem is due to the fact that I know very little about working with tables. I added 2 new regions. so I now have sidebar_left, sidebar_left2, sidebar_right, and sidebar_right2.
The problem is the new sidebars are being placed side by side instead of on top of one another. so what i'm ending up with is this:
[sidebar_left][sidebar_left2][content][sidebar_right][sidebar_right2]
where I need to have this:
[sidebar_left] [content] [sidebar_right]
[sidebar_left2] [ ] [sidebar_right2]
Theme is bluemarine, here is how i'm incorrectly displaying the sidebars.
if ($sidebar_left) {
}
if ($sidebar_left2) {
}
if ($mission) {
print $mission
}
print $breadcrumb
print $title
print $tabs
print $help
|