hi,
i wanted to customize the header with my own, so i did this in function.php, is this correct ?
//remove defaults
function remove_defaults() {
remove_action('thematic_header', 'thematic_blogtitle',3);
remove_action('thematic_header', 'thematic_blogdescription',5);
remove_action('thematic_header', 'thematic_access',9);
}
add_action('init', 'remove_defaults');
//recreate the childtheme header
function childtheme_header() { ?>
<div id="logo">
<div id="blog-titile">
<span>
/" title="<?php bloginfo('name') ?>" rel="home"><?php bloginfo('name') ?>
</span>
</div>
<h1 id="blog-description"><?php bloginfo('description') ?></h1>
</div>
<ul id="navi">
<?php }
add_action('thematic_header', 'childtheme_header', 2);
should i separate each section, put them in their original position ? or can i put everything in as in position 2 (below div#branding) ?
Im still learning thematic. header is tricky part.