You can and probably should do at leat 2 things...WWhat you have is a 'logo' or head image that is 110px tall. Here is the code in your stylesheet.css file as it currently is:
Code:
#headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
margin: 0em;
padding: 0em;
}
I would separate the headerWrapper into its' own entry and add the 2 statements in red and adjust the color to match either the black or the yellow as you see fit and the height to match the image and/or if you desire the black line under make the color black and the height a value over 110px for the height of the line that you want like 120px??
#headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper,
Code:
#headerWrapper {
margin: 0em;
padding: 0em;
background-color: #000000;
height: 110px;
}
#contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
margin: 0em;
padding: 0em;
}