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
Comment #1
alanburke commentedI guess it would help,
but
works just fine in style.css to overide the width for any sidebar width.
Alan
Comment #2
johnalbinI 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.
Comment #3
(not verified) commented