Needs review
Project:
Garamond
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 Jul 2007 at 18:46 UTC
Updated:
5 Jul 2007 at 18:46 UTC
I couldn't find sidebar_left in the page.tpl.php file. Only sidebar_right.
As my menus were displayed in this region, going to this theme broke them. Simple fix was to copy
if ($sidebar_left || $sidebar_right):
if ($sidebar_left) { print $sidebar_left; }
if ($sidebar_right) { print $sidebar_right; }
endif;
from the antique_modern theme overtop the code that displayed sidebar_right. Now, both right and left are displayed on the right, with left appearing first.