You might be able to create a "logoBox" just for the logo and then use either absolute or relative positioning within the stylesheet to get the look you're after.
something like this
<div id=logoWrapper">
<div id="logoBox">
your_logo
</div>
</div>
in the stylesheet you have something like this
#logoBox {
position: absolute;/* you could also use relative*/
top: 0; /*adjust this to whatever you need*/
left:0; /* adjust this to whatever you need*/
}





