You have an extra closing </div> tag in your code that is messing things up:
Code:
<div id="buttonclick" style="width: 73px; height: 35px" ><img src="images/buttonclick.png" width="73px" height="35px" onclick="submitform()" style="cursor: hand" /> </div>
</div>
Remove that and you'll be OK, except that you should also remove the height on the #searchbox div, which appears in two places:
Code:
#searchbox{
background-repeat:no-repeat;
padding-left:10px;
width: 501px; height: 37px;
position: relative;
}
and
Code:
<div id="searchbox" style="
width: 501px;
height: 37px;
background: #fff url(images/searchbox.png) no-repeat center scroll" display="block" >
The #searchbox idv is meant to wrap around the whole form, so you don't want that height set on it.
Also, the code in blue above is invalid. Just remove it, as a div displays as a block anyway.
Bookmarks