Simple clearing question

How do I make my Top Menu clear my H1?


<h1>ACME, Inc.</h1>

<!-- DROP-DOWN MENU -->
<ul id="nav">
	<li class="current"><a href="#">News</a>
		<ul>


#header h1 {
	float: left;
	padding: 0;
	font-family: Georgia, Baskerville;
	font-size: 2em;
	clear: both;
}

Debbie

Looks like I needed this…


#nav{
	clear: both;
}

Debbie