I'm trying to lay out a set of horizontally aligned divs with a header underneath, but it's appearing as follows:
This is the jsfiddle: http://jsfiddle.net/4cTSK/
What do I need to do to get the divs to appear over the header, like follows?
<div class="horizontal-div-container even-spacing-signature">
<div>
<span>Signed by the Client: ______________________ </span>
</div>
<div>
<span>Signed by the Engineer: _____________________</span>
</div>
</div>
<div class="horizontal-div-container even-spacing-signature">
<div>
<span>Date: ______________________ </span>
</div>
<div>
<span>Date: _____________________</span>
</div>
</div>
<h1>
Appendix 3, Client Information
</h1>
h1 {
background: #000096;
color: #FFF;
text-align: center;
font-weight: bold;
font-size: 1em;
}
.horizontal-div-container div {
float: left;
clear: none;
}
.even-spacing-signature div
{
font-weight: bold;
width: 50%;
}