Hey Tom,
try this one:
// This will create your widget area
function my_widgets_init() {
register_sidebar(array(
'name' => 'Below MainAside',
'id' => 'below-mainaside',
'before_widget' => '<li id="%1$s" class="widgetcontainer %2$s">',
'after_widget' => "</li>\n",
'before_title' => "<h3 class=\"widgettitle\">",
'after_title' => "</h3>\n",
));
}
add_action( 'init', 'my_widgets_init' );
// adding the widget area to your child theme
function my_sidebar_widgets() {
if ( function_exists('dynamic_sidebar') && is_sidebar_active('below-mainaside') ) {
echo '<div id="below-mainaside" class="aside">'. "\n" . '<ul class="xoxo">' . "\n";
dynamic_sidebar('header-aside');
echo '' . "\n" . '</ul>'. "\n";
echo '' . "\n" . '</div><!-- #below-mainaside .aside -->'. "\n";
}
}
add_action('thematic_belowmainasides', 'my_sidebar_widgets');
Haven't tested this one, it's a rewrite of my widgetized area in the header.
You might want to change the markup according to your needs.
Cheers,
Chris