Ok I got some things worked, but I still have a problem with header parts. I searched for solutions in forums for the two areas: branding and advertising to be on the same level in the header together and found:
#branding {
float: left;
width: 620px;
}
#header-contact {
float: right;
width: 320px;
padding: 88px 0 44px;
}
/* This will clear the floats and keeps the access bottom line
from jumping into the air */
#access {
clear: both;
}
But it does not work well so I modified with margin-left to move the branding to be on the same vertical side as the start of the navigation menu - still I think there could be a better way for this - I will appreciate it if I could get help on this part.
modified css:
.home #branding {
float: left;
width: 300px;
margin:0 0 0 250px;
}
.home #header-ad {
float: right;
width: 600px;
padding:0;
margin:0;
}
then function for advertising part:
function additional_header_content() {?>
<div id="header-ad"><img src="images/xxx.jpg" width="600" height="300"/></div>
<?php}
add_action('thematic_header', 'additional_header_content',8);
After searching in forum for answers on function part, I copy and modify the div inside function, but it does not work - image doesn't appear next to branding :(
Please kindly help to shed light on these parts and also if possible, could you please help with these parts?
Thank you in advance for your help