Hi,
I have this now, but want to add a searchbox in the header next to branding
//Move Menu to top, one hopes
function new_header() {
remove_action('thematic_header','thematic_brandingopen',1);
remove_action('thematic_header','thematic_access',9);
}
add_action('init', 'new_header');
add_action('thematic_header','thematic_access',1);
add_action('thematic_header','thematic_brandingopen',2);
I found this by Chris
function additional_header_content() {
// your stuff goes inside here
}
add_action('thematic_header', 'additional_header_content', 6);
and tried <?php get_search_form(); ?> for the your stuff goes here.
I also tried widgetizing below_header but couldn't make it work PLUS suddenly I have no search widget!
I am not having the most brilliant week.
Any help would be appreciated.
Leslie