I noticed that when I changed my grid "sidebar location" from right to left that not every stylesheet picked up that change. Some continue to show the sidebar on the right while others are correctly picking up that change. When I updated the style on one of my downloaded styles that wasn't working, it started working correctly. However, I also have some very customized styles that I'll need to update by myself. Does anyone know what variable would control or interfere with a style's ability to hook into the grid settings?
edit: found the problem.
changed
Quote:
<div id="doc3">
<div id="bd">
<div class="yui-g">
<div class="yui-tvb-l40 first yui-panel">
<ul class="list_no_decoration" id="widgetlist_column1">$column[1]</ul>
</div>
<div class="yui-tvb-r60 yui-panel">
<ul class="list_no_decoration" id="widgetlist_column2">$column[2]</ul>
</div>
</div>
</div>
</div>
|
to (copied from a working one)
Quote:
<div id="doc3" class="yui-tvb-l2">
<div id="bd">
<div id="yui-main">
<div class="yui-b">
<div class="yui-u yui-panel">
<ul class="list_no_decoration widget_list" id="widgetlist_column1">$column[1]</ul>
</div>
</div>
</div>
<div class="yui-b yui-sidebar">
<ul class="list_no_decoration widget_list" id="widgetlist_column2">$column[2]</ul>
</div>
</div>
</div>
|
within vbcms_grid_2