Schriftzug verschieben und Logo einfügen

Hallo, ich habe ein Logo für meine Webseite vorbereitet. Diese möchte ich nun wie im Bild markiert in mein Design einfügen. Jedoch muss ich dazu automatisch die Blogüberschrift auch passend nach rechts verschieben. Hochladen kann ich das Bild per header.php, doch komme ab da nicht mehr weiter :frowning:

http://img542.imageshack.us/img542/1892/llll.png

Code bitte.

Welchen Code brauchst du (Damit ich nicht unwissen x-Codes poste)? Ich poste mal die header.php

[HTML]<?php

// Creating the doctype
thematic_create_doctype();
echo " ";
language_attributes();
echo ">\n";

// Creating the head profile
thematic_head_profile();

// Creating the doc title
thematic_doctitle();

// Creating the content type
thematic_create_contenttype();

// Creating the description
thematic_show_description();

// Creating the robots tags
thematic_show_robots();

// Creating the canonical URL
thematic_canonical_url();

// Loading the stylesheet
thematic_create_stylesheet();

if (THEMATIC_COMPATIBLE_FEEDLINKS) {    
    // Creating the internal RSS links
    thematic_show_rss();

    // Creating the comments RSS links
    thematic_show_commentsrss();
   }

// Creating the pingback adress
thematic_show_pingback();

// Enables comment threading
thematic_show_commentreply();

// Calling WordPress' header action hook
wp_head();

?>

<?php thematic_body(); // action hook for placing content before opening #wrapper thematic_before(); if (apply_filters('thematic_open_wrapper', true)) { echo '
'; } // action hook for placing content above the theme header thematic_aboveheader(); ?>
<div id="header">

<div id="icons">
<a href="http://feeds.feedburner.com/Quartel"><img src="http://www.quartel.de/rss.png" alt="RSS" title="RSS"> </a>
<a href="http://twitter.com/#!/QuartelBlog"><img src="http://www.quartel.de/twitter.png" alt="Twitter" title="Twitter"> </a>
</div>


    <?php 
    
    // action hook creating the theme header
    thematic_header();
    
    ?>

</div><!-- #header-->
<?php

// action hook for placing content below the theme header
thematic_belowheader();

?>   
<div id="main">
[/HTML]