I'm trying to get Box1 and Box2 to appear side by side, but for some reason Box2 keeps appearing below Box1. I've simplified the code to remove any links or references, but I can't figure out why they won't align properly.
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="KnowledgeBase.ascx.cs" Inherits="Control_KnowledgeBase" %>
<!-- OPENS THE PAGE HEADER DIV -->
<div id="MainContent">
<!-- OPENS THE MAIN CONTENT DIV -->
<h2 class="Billboard">
<a href="#">System Knowledge Base</a></h2>
<div class="Billboard">
<p align="center">
<a href="../customercare.aspx">Home</a> I <a href="../customercare.aspx">Customer Care</a>
I <a href="../fieldcustomercare.aspx">Field Customer Care</a>
I <a href="../Logout.aspx"> Logout </a>
</p>
</div>
<h2 class="Billboard">
General System Information</h2>
<div class="Billboard">
<p>
80 Links and Documents
</p>
</div>
<h2 class="QuickLinks">
Build Release Notes</h2>
<div class="QuickLinks"style="float:left;width:48%;">
<p>
120 Links and Documents
</p>
</div>
<h2 class="QuickLinks">
Supplemental Release Notes</h2>
<div class="QuickLinks"style="float:left;width:48%;">
<p>
10 Link and Documents
</p>
</div>
<h2 class="Billboard">
TFACTS Customer Care</h2>
<div class="Billboard">
<p>
10 Link and Documents
</p>
</div>
<h2 class="Billboard">
Reference Materials and Storyboards
</h2>
<div class="Billboard">
<p>
250 Links and documents
</p>
</div>
</div>;