noob - bottom of the learning curve here with a couple of questions. I'm trying to figure out how to use the hooks built in to thematic's header.php. Looking at the "Theme Hooks" page of the guide I see an example for adding a sidebar tweets plugin.
1. Do I understand correctly that the code goes in the child theme's functions.php file?
2. So if, for example, I wanted to add some html (image, canvas, div, etc) below the header, could I do something like this in functions.php:
function add_html_here() {
<div id-"canvas-container">...some html...</div>
}
add_action('thematic_belowheader', 'add_html_here');
?