Шаблон под CMS WP Задача: из шаблона с одним(правым) сайдбаром, сделать шаблон с двумя сайдбарами (левый и правый). Ход действий: 1. Зарегистрировать еще один сайд бар в функшен.пхп Исполнено таким образом: <?php if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'sidebar_right', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h2>', 'after_title' => '</h2>', )); if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'sidebar_left', 'before_widget' => '', 'after_widget' => '', 'before_title' => '<h2>', 'after_title' => '</h2>', )); ?> 2. В шаблоне добавить файл пхп для сайдбаров. Исполнено таким образом: Содержимое файла l_sidebar.php <div id="sidebar-left"> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_left') ) : else : ?> <ul> <ul> <?php get_archives('postbypost', 5); ?> </ul> <?php endif; ?> </ul> <div style="clear:both;"></div> </div> Содержимое файла r_sidebar.php <div id="sidebar-right"> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Sidebar_right') ) : else : ?> <ul> <ul> <?php get_archives('postbypost', 5); ?> </ul> <?php endif; ?> </ul> <div style="clear:both;"></div> </div> 3. Вызов сайдбаров в шаблоне. Исполнено таким образом: <?php include(TEMPLATEPATH."/l_sidebar.php");?> <?php include(TEMPLATEPATH."/r_sidebar.php");?> 4. Оформить через css Исполнено таким образом: #sidebar-left { width:160px; color:#55554A; margin-top:-10px; position:relative; right: 0px; font: 11px Verdana, Arial, Helvetica, sans-serif; margin-bottom: 15px; overflow: hidden; } #sidebar-left h2 { font-size: 12px; color: #000000; letter-spacing: -1px; } #sidebar-left ul li { margin-left: 3px; list-style: none; background: url(images/lidot.gif) no-repeat left 6px; padding-left: 8px; padding-bottom: 2px; border-bottom: 1px dotted #CCCCC6; padding-top: 3px; line-height: 16px; } #sidebar-left ul a { color: #55554A; font-weight: normal; } #sidebar-left ul a:hover { color: #fff; text-decoration: underline; font-weight: normal; } #sidebar-left ul.children li { border-bottom-style: none; background: url(images/subcat.gif) no-repeat left top; margin: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 12px; } #sidebar-left h2 { background: url(images/side-h2-bg.png) repeat-x left top; color: #FFFFFF; padding-top: 2px; padding-bottom: 4px; padding-left: 6px; margin-bottom: 8px; margin-top: 10px; border: 1px solid #B8B8AE; } #sidebar-right { width:160px; color:#55554A; margin-top:-10px; position:relative; right: 0px; float: right; font: 11px Verdana, Arial, Helvetica, sans-serif; margin-bottom: 15px; overflow: hidden; } #sidebar-right h2 { font-size: 12px; color: #000000; letter-spacing: -1px; } #sidebar-right ul li { margin-left: 3px; list-style: none; background: url(images/lidot.gif) no-repeat left 6px; padding-left: 8px; padding-bottom: 2px; border-bottom: 1px dotted #CCCCC6; padding-top: 3px; line-height: 16px; } #sidebar-right ul a { color: #55554A; font-weight: normal; } #sidebar-right ul a:hover { color: #fff; text-decoration: underline; font-weight: normal; } #sidebar-right ul.children li { border-bottom-style: none; background: url(images/subcat.gif) no-repeat left top; margin: 0px; padding-top: 0px; padding-bottom: 0px; padding-left: 12px; } #sidebar-right h2 { background: url(images/side-h2-bg.png) repeat-x left top; color: #FFFFFF; padding-top: 2px; padding-bottom: 4px; padding-left: 6px; margin-bottom: 8px; margin-top: 10px; border: 1px solid #B8B8AE; } Итог: Сайдбары выводятся, но пляшут по странице - то выше контента, то ниже, то под ним, то над ним (в зависимости от того на главной странице, или на странице записи, или на статической странице). Вопрос, где я неправ(скорее всего в css), и как это подправить что бы сайдбары не плясали? Заранее благодарен.