Issue with duplicating siderbar on left and right side
Permalink
All,
I have a three column layout.
On the left column I have declared
<?php
$s = new Area('SideBar');
$s->display($c);
?>
On the right sidebar div the same code; however when it comes to editing the page or viewing the strangest thing happens. The sidebars that I create on the left are duplicated exactly on the right hand side. Further more when I enter edit mode Concrete 5 highlights the right sidebar bloack for editing but won't let me actually click on them to edit...I am very confused can anyone help??
I have a three column layout.
On the left column I have declared
<?php
$s = new Area('SideBar');
$s->display($c);
?>
On the right sidebar div the same code; however when it comes to editing the page or viewing the strangest thing happens. The sidebars that I create on the left are duplicated exactly on the right hand side. Further more when I enter edit mode Concrete 5 highlights the right sidebar bloack for editing but won't let me actually click on them to edit...I am very confused can anyone help??
eg for the left
<?php
$s = new Area('SideBar');
$s->display($c);
?>
and for the right
<?php
$s = new Area('RightBar');
$s->display($c);
?>