Jill,
The issue is in this rule:
|
Code:
|
.column-left ul li {
display: block;
} |
Li's are already block elements so no need for this, remove it and the issue will be fixed.
Also, there is a problem in your code, you will have to properly close all your open tags, for example, I can't see any closing li tags </li>
The HTML should look like this:
|
HTML Code:
|
<ul>
<li>Research</li>
<li>Registration</li>
<li>Travel Arrangements</li>
<li>Follow Up and Confirmations</li>
</ul> |
No <br>s necessary.
I hope this helps