what code do I need to alter to make the links at the top of each of the tables appear bold?
<!-- m --><a class="postlink" href="http://enka.cs.unca.edu/244%2D001%2D2004F/Team52/s/work/work.html">http://enka.cs.unca.edu/244%2D001%2D200 ... /work.html</a><!-- m -->
such a simple thing, but what I've tried will not work.If you want them to look the same, you could use the following:
a.table:link, a.table:visited, a.table:hover, a.table:active {
font-weight: bold;
}
Then just code your link like:
<a class="table" href=http://www.webdeveloper.com/forum/archive/index.php/"/dir/filename.htm">link name</a>
Or, if you wanted the links to look different after interaction,
a.table:link {
color: #0000b0;
font-family: verdana, arial, helvetica, sans-serif;
font-weight: bold;
text-decoration: none;
}
a.table:visited {
color: #0000b0;
font-family: verdana, arial, helvetica, sans-serif;
font-weight: bold;
text-decoration: none;
}
a.table:hover {
color: #FF3300;
font-family: verdana, arial, helvetica, sans-serif;
font-weight: bold;
text-decoration: none;
}
a.table:active {
color: #66ccff;
font-family: verdana, arial, helvetica, sans-serif;
font-weight: bold;
text-decoration: none;
}
<!-- m --><a class="postlink" href="http://enka.cs.unca.edu/244%2D001%2D2004F/Team52/s/work/work.html">http://enka.cs.unca.edu/244%2D001%2D200 ... /work.html</a><!-- m -->
such a simple thing, but what I've tried will not work.If you want them to look the same, you could use the following:
a.table:link, a.table:visited, a.table:hover, a.table:active {
font-weight: bold;
}
Then just code your link like:
<a class="table" href=http://www.webdeveloper.com/forum/archive/index.php/"/dir/filename.htm">link name</a>
Or, if you wanted the links to look different after interaction,
a.table:link {
color: #0000b0;
font-family: verdana, arial, helvetica, sans-serif;
font-weight: bold;
text-decoration: none;
}
a.table:visited {
color: #0000b0;
font-family: verdana, arial, helvetica, sans-serif;
font-weight: bold;
text-decoration: none;
}
a.table:hover {
color: #FF3300;
font-family: verdana, arial, helvetica, sans-serif;
font-weight: bold;
text-decoration: none;
}
a.table:active {
color: #66ccff;
font-family: verdana, arial, helvetica, sans-serif;
font-weight: bold;
text-decoration: none;
}