I want to add a couple of <div> containers in my child theme header, inside #branding.
If I modify the function thematic_brandingopen() directly in header-extension.php it works flawlessly:
function thematic_brandingopen() {
echo "<div id=\"branding\"><div id='logo-container'></div><div id='social-links'></div>\n";
}
but if I create a childtheme_override_brandingopen() my whole #branding div container disappears...
function childtheme_override_brandingopen(){
echo "<div id=\"branding\"><div id='logo-container'></div><div id='social-links'> </div>\n";
}
I do not know why it does not work...