Hello everyone,
i am almost new to this and i am building a child theme based on Thematic framework.
i redesigned the "header" placing above all the logo, the menu after and then a Flash window. I had this working:
function remove_thematic_actions() {
remove_action('thematic_header','thematic_access',9);
}
add_action('init','remove_thematic_actions');
//
function thematic_logo_image() {
echo '<div id="logo-image"><img src="logo.gif" /></div>
';
// action hook creating the theme header
thematic_access();
}
add_action('thematic_header','thematic_logo_image',3);
but i need to have the menu aligned on the bottom line of the logo.
How can i do?
Thanks