Hello,
I looked around the forum for an answer and although there were some topics that are close.. I didn't find the answer to my question.
What I am trying to do should be simple:
I want to wrap everything inside the header EXCEPT for the access in a new div.
So start the new wrapping div before branding and end before access.
The Reason:
I want to keep the headers original size but be able to position the branding (float left) and a new header widget area (float right). The only way I can do that now is if I restrict the header size.
I'm guessing this can all be done through the functions.php in my child theme.. I'm just not familiar enough with the hooks and php code to do it.
Thanks!
BTW: I'm using this code (from this forum) to add the header widget area (works great):
// adding the widget area to your child theme
function my_header_widgets() {
if ( function_exists('dynamic_sidebar') && is_sidebar_active('header-aside') ) {
echo '<div id="header-aside" class="aside">'. "\n" . '<ul class="xoxo">' . "\n";
dynamic_sidebar('header-aside');
echo '' . "\n" . '</div><!-- #header-aside .aside -->'. "\n";
}
}
add_action('thematic_header', 'my_header_widgets', 8);
?>