Forum Moderators: not2easy
Also, I'm trying to center the entire thing (header, menu, content). How can I do this, keeping in mind different resolutions and stuff?
Thanks!
Jennifer
<style type="text/css">
#nav{background-color: blue; width: 200px; float: left;}
#content{margin-left: 205px; border-left: 2px solid black;}
</style>
<body>
<div id="nav">
<a href="">link link link</a><br />
<a href="">link link link</a><br />
...etc(made longer than content for testing purposes)
</div>
<div id="content">
<p>Content content content content content content content content content content content content
</p>
<div style="clear: both;"></div>
</div>
</body>