Re: Extra space below header image
In regard to the white space that is your header wrapper in your stylesheet. In order to fix this find the following in your stylesheet.css (around line 180).
#headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
margin:0;
padding:0;
}
You'll want to single out the #headerWrapper so you can individuallly define its height. Replace the above code with:
#headerWrapper {
height: 82px;
}
#contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
margin:0;
padding:0;
}
In regard to the search header - you can position it in the stylesheet. In line 283 you'll see:
#navMainSearch {
position: absolute;
top: 100px;
left: 800px;
}
Change to your desired position - download firefox addon - firebug if you haven't already to make this task a lot faster and simpler...
Steve
Site Under Construction: adatglobal.com