Quote Originally Posted by Michael V View Post
Just tried adding width with no effect... I thought that I'd have to split the image but got it to do what I wanted by removing the float left and adding text-align left to #logo. Then I double checked through IE and found it didn't work for that platform.

If I have to I guess I'll split the image, it just seems a lot cleaner to leave it in one piece.
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*/
}