I am trying to add two left side sidebars to my twenty twelve theme in Wordpress. For some reason they seem to have shown up but are overlapping. My site is: http://hubatrancho.com/You can see that the top sidebar will have a secondary menu (of different sizes) and the bottom sidebar will have a map (always the same size). Right now I used a few line breaks in my sidebar.php to show that the top sidebar is below the bottom one. Any ideas why this is happening?To create the left side bar I followed this tutorial: http://zeaks.org/tutorials/twenty-twelve-theme-three-column-layout/Then I just added new code for sidebar-6 into the sidebar.php and called a new sidebar in the functions.php. Seems like a CSS thing but I can't figure it out. I can't set a margin or padding because the top sidebar will always be different sizes depending on the page.Thanks in advance for your help.sidebar.php\[code\]<!-- LEFT SIDEBARS --><?php if ( is_active_sidebar( 'sidebar-5' ) ) : ?> <div id="extra-sidebar" class="widget-area" role="complementary"> <?php dynamic_sidebar( 'sidebar-5' ); ?> </div><!-- .extra-sidebar .widget-area --><?php endif; // end extra sidebar widget area ?><br/><br/><br/><br/><?php if ( is_active_sidebar( 'sidebar-6' ) ) : ?> <div id="extra-sidebar2" class="widget-area" role="complementary"> <?php dynamic_sidebar( 'sidebar-6' ); ?> </div><!-- .extra-sidebar .widget-area --><?php endif; // end extra sidebar widget area ?>\[/code\]functions.php\[code\]if ( function_exists('register_sidebar') ) { register_sidebar( array( 'name' => __( 'Second Extra Sidebar', 'twentytwelve' ), 'id' => 'sidebar-5', 'description' => __( 'The Second Left Sidebar. Displayed on all but full width and homepage template.', 'twentytwelve' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) );}// Register extra sidebarfunction mytheme_widgets_init() { register_sidebar( array( 'name' => __( 'Extra Sidebar', 'twentytwelve' ), 'id' => 'sidebar-6', 'description' => __( 'The Left Sidebar. Displayed on all but full width and homepage template.', 'twentytwelve' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) );}add_action( 'widgets_init', 'mytheme_widgets_init' );\[/code\]