Is this too extreme?
Looks like the height of the header is too tall. The background image at the top of the page is height:104px as should be the height of the header box in which it resides, not height:120px, so:
Code:
mrc_index_main.css Line 70
#header {height:104px;} /* from 120px */
The white line below the brandingImage will not exist after you increase the height of the container in which the brandingImage resides (by 16px to compensate for the reduced height of the header box).
Code:
mrc_index_main.css Line 187
#branding {height:324px} /* from 308px */
Regarding the Mentor logo:
Code:
mrc_index_main.css Line 16
#pagewidth {position:relative} /* add this property */
common.css Line 43
#header {position:relative} /* delete this property */
mrc_index_main.css Line 79
#headerimage {
position: absolute;
top: 30px;
z-index: 1; /* add this property */
}
I think that'll do it.
Speculation:
My feeling is that you will not like the 3px dithered-to-white line above the brandingImage, but that's part of the header image. The height of the box for the brandingImage could probably be extended 3 more pixels and could be given a negative margin-top of 3px to extend it over the header image.
Bookmarks