Add new widget for header:
use this in theme functions:
// sidebar stuff
register_sidebars( 1,
array(
'name' => 'Head column',
'id' => 'head-column',
'description' => __('The head-column widget area, most often used for placing your custom code.'),
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>'
)
);
then this in the header area where you want the widget to appear:
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('head-column') ) : ?>
<?php endif; ?>