Yes sorry leaderboard is a part of my child theme. Thanks so much for that link to a the priority order helgatheviking, The div I am inserting to the header has several div's with in it for images... I am having a nightmare with it though!
I have removed the blog title and blog description like so:
function remove_stuff()
{
remove_action('thematic_header','thematic_blogtitle', 3);
remove_action('thematic_header','thematic_blogdescription', 5);
}
add_action('init','remove_stuff');
and added my own div for my header images like so:
function add_header_branding () {
?>
<div id="header_branding">
<div id="header_logo">
<img src="../../../../images/new_header/header_logo.png" border="0">
</div>
<div id="header_white">
<img src="../../../../images/new_header/header_white.png" border="0" />
</div>
<div id="header_sub">
src=0064"><img src="../../../../images/new_header/header_sub.png" border="0">
</div>
<div id="header_mag">
<img src="../../../../images/new_header/header_mag.png" border="0" /></div>
</div>
<?php
}
add_action('thematic_header', 'add_header_branding', 4);
The result in firebug is this:
<div id="header">
<div id="branding">
<div id="header_branding">
</div>
<div id="access">
<div class="skip-link">
<div class="menu">
</div>
</div>
The div "header" is positioned releative. Then when I position either "branding" absolute that whole div falls below "access" and "main" (below access in the order). And is positioned absolute on top of those elements as if it didn't have a place in my overall structure (as if I hadn't labelled as 4).
Maybe I should say "header_branding" is posited releative and the four div's I have in it are all positioned absolute.
Can anyone help!? This problem has taken up soooo much of my time and I have not been able to find the cause.
Cheers