I'm attempting to achieve an effect that looks like:
C---------------------------------------)
| Address 1 | Phone Numbers |
| Address 2 | Times place is open |
(---------------------------------------)
However, the spacing with the following code makes it appear as:
(-------------------------------------------)
| Address 1 | Phone Numbers |
| Address 2 | Times place is open |
(-------------------------------------------)
What steps can I take to rectify this issue? Below are the relevant CSS and HTML snippets.
<footer>
<style>
footer {
margin-left: 224px;
margin-top: 1em;
margin-bottom: 1em;
clear: both;
font-size: 0.66em;
}
#contactInfo{
background: #FDF9D3;
border: 1px solid black;
-moz-border-radius: 5px;
border-radius: 5px;
-moz-column-count: 2;
-moz-column-rule: 1px solid black;
}
</style>
<div id="contactInfo">
<span class="address">Address 1</span><br>
<span class="address">Address 2</span><br>
<span class="phone">Office: ###-###-####, Fax: ###-###-####</span><br>
<span id="hours">Open Monday through Friday from 9:00am to 5:30pm</span>
</div>
<div id="copyright">Copyright © Business Name goes here, 2010; All rights reserved</div>
</footer>