So... here goes
<?php
function move_brandingopen(){
remove_action('thematic_header','thematic_brandingopen',1);
}
add_action('init','move_brandingopen');
add_action('thematic_header','thematic_brandingopen',2)
function top_box() {?> <div id="topbox"></div> <?php}
add_action('thematic_header','top_box',1)
?>
Why no workie?
My PHP skills aren't that great