Hi,
You can't click your form buttons because they are under your footer.
Your footer is 68px highand absolutely placed but your clearfooter is only 27px therefore you have considerable overlap.
Either change the clear footer and footer heights etc or reset the z-index as follows.
Code:
#content-box {
width: 531px;
text-align: left;
float: left;
padding: 7px 0 0 0;
position:relative;
z-index:100;
}
#footer {
position:absolute;
bottom:0;
width:100%;
height: 68px;
z-index:0;
}
That should put the submit buttons on top and make them clickable.
Paul
Bookmarks