Hard to tell without having the image.
But maybe try this in the css, replace #header with this
Code:
#header {
height: 120px;
width: 100%;
margin: 0 auto 0 auto;
border-bottom: 1px solid black;
padding: 0;
}
or maybe this, just for IE. Leave #header, but add this.
Code:
html>body #header {
height: 120px;
width: 100%;
border-bottom: 1px solid black;
margin:0;
padding:0;
}
OR, you could try adding this in the HTML, replace the image with.
Code:
<a href="/ziimobile/"><img src="/ziimobile/header.png" title="ZiiMobile" alt="ZiiMobile" style="margin:0; padding:0;"></a>
|