Is there a way to align the company logo div next to the name, address, email, and phone number containers? I've attempted using display: inline and float: right, but the logo isn't moving up as desired. Here's the code snippet:
http://jsfiddle.net/CfzSF/embedded/result/
<div style="width: 464px;">
<div class="page-title">Company Name</div>
<div style="font-size: 12px; color: #222;">Name:</div>
<div style="font-size: 12px; color: #222;">Address:</div>
<div style="font-size: 12px; color: #222;">Email:</div>
<div style="font-size: 12px; color: #222;">Phone:</div>
</div>
<div style="border: 1px solid #1a4567; width: 100px; float: right;">
<div>Company</div>
<div>Logo</div>
</div>