Ok, the main problem is as I suspected and you have set the logo to have a height and some padding which makes it bigger than the parent.
Code:
.logo {
padding:15px 0px 0px 30px;
background-image:url(http://lpa-group.directcms.co.uk/Portals/0/Containers/LPA-Group/back_header_left.gif);
background-repeat:no-repeat;
background-position:top left;
height:164px;
}
Remove the top padding or reduce the height by 15px.
The parent td is only 164px high:
Code:
td.header {
background-image:url(http://lpa-group.directcms.co.uk/Portals/0/Containers/LPA-Group/back_header.gif);
background-repeat:repeat-x;
background-position:top;
height:164px;
padding:0px;
margin-bottom:0px;
}
Bookmarks