I'm no expert, so I may be wrong, but on that page, I see only two links that aren't underlined. Both of those links are set to the "a.special" class, but I don't see any CSS selector for that a.special class:
Code:
<td class="special"> <a class="special" href="media.php">Media Info</a> | <a class="special" href="contact.php">Contact Info</a> </td>
Try removing the red parts above. If that works, then the problem is your "special" selector. If that's the case, then either remove class="special" from every non-dashed-underlined link, or create a selector for a.special that has the same dashed properties that your generic a selector has.
Bookmarks