Here is an example of how I would set up your Links page:

<body id="links">
<h3>Featured Links</h3>
<ul>
<li>Construct Records</li>
<li>Google</li>
<li>All Music Guide</li>
<li>Roger Ebert</li>
<li>IMDb</li>
<li>Download.com</li>
<li>Phi Mu Alpha NS</li>
</ul>
</div>

And so on. Then use the following CSS code, which applies the rules only to the page with the BODY ID classification of "links":


#links h3
{
border: solid #880000;
border-width: 1px 10px 1px 10px;
width: auto;
text-align: center;
margin-bottom: 5px;
font-weight: bold;
background-color: #EEEEEE;
font-size: 10px;
font-family: tahoma;
line-height: 12px;
text-decoration: none;
padding-top: 2px;
padding-bottom: 2px
}
#links ul
{
margin: 0;
padding: 0
}
#links li
{
text-align: center;
list-style-type: none;
display: inline;
width: 24%;
float: left
}