|
in maincss.css
#column-container .leftonly {
margin-left: 23em;
width: auto;
}
was changed to
#column-container .leftonly {
/*margin-left: 23em;
width: auto;*/
float: left;
width: 79%;
}
This should not be float: left; as you'll have the leftbar to the left
of the content. To see the result check out the catalog component.
|