In layout.css, there is a defintion that is:

#container .sidebar {
width:210px;
}

It would be better to rather define the width individually for each sidebar like:

#container #sidebar-left, #container #sidebar-right {
width:210px;
}

This makes it easier to override these settings for custom themes.

Comments

alanburke’s picture

I guess it would help,
but


#container #sidebar-left{
width: 195px;
}

works just fine in style.css to overide the width for any sidebar width.

Alan

johnalbin’s picture

Version: 6.x-1.x-dev » 5.x-1.x-dev
Category: task » feature
Status: Active » Fixed

I think most designs have different widths for the sidebars, so that might be a good default.

Also, I think this will help for new Zen designers.

Anonymous’s picture

Status: Fixed » Closed (fixed)