What you've got there is a list of links and therefore it should all be within a list.
So instead of this:
<p>
<font face="verdana" size="1.5">
- <a href="index.php">Home</a><br>
- <a href="shows.php">Shows</a><br>
- <a href="results.php">Results</a><br>
- <a href="roster.php">Roster</a><br>
- <a href="/media/media.php">Multi Media</a><br>
- <a href="/media/pics.php">Pictuers</a><br>
- <a href="/media/video.php">Videos</a><br>
- <a href="/forums/index.php">Message Board</a><br>
- <a href="http://myspace.com/ccwprowrestling">CCW on Myspace</a><br>
</font>
</p>
I'd do this:
<ul id="linklist">
<li>- <a href="index.php">Home</a></li>
<li>- <a href="shows.php">Shows</a></li>
<li>- <a href="results.php">Results</a></li>
<li>- <a href="roster.php">Roster</a></li>
<li>- <a href="/media/media.php">Multi Media</a></li>
<li class="indent">- <a href="/media/pics.php">Pictuers</a></li>
<li class="indent">- <a href="/media/video.php">Videos</a></li>
<li class="indent">- <a href="/forums/index.php">Message Board</a></li>
<li class="indent">- <a href="http://myspace.com/ccwprowrestling">CCW on Myspace</a></li>
</ul>
CSS:
#linklist li {list-style-type:none;font-family:Verdana, Arial, sans-serif; font-size:150%;}
#linklist li.indent {margin-left:20px;}
Ooh I'm on a roll now! Is this indented bit of the list actually sub-topics for the MultiMedia section? If so then what you want to do rather than faffing around with classes is to add a sub-list - that would be semantically correct so your HTML would be;
<ul id="linklist">
<li>- <a href="index.php">Home</a></li>
<li>- <a href="shows.php">Shows</a></li>
<li>- <a href="results.php">Results</a></li>
<li>- <a href="roster.php">Roster</a></li>
<li>- <a href="/media/media.php">Multi Media</a>
<ul>
<li>- <a href="/media/pics.php">Pictures</a></li>
<li>- <a href="/media/video.php">Videos</a></li>
<li>- <a href="/forums/index.php">Message Board</a></li>
<li>- <a href="http://myspace.com/ccwprowrestling">CCW on Myspace</a></li>
</ul>
</li>
</ul>
And the CSS would be:
#linklist li {list-style-type:none;}
#linklist li li {color:red;}
#linklist li li a {color:red;}