GregTheGeek
Programmer
I am wondering if I can make links behave differently on the same page. I have different classes for links that appear along the left of the screen and for those in the main body. I want the links on the left to never show any text decoration and the ones in the main body to show the decoration I have already specified (strike-through on visited links, etc.)
Here's the page in question:
Any help would be appreciated! I have included my CSS below
Hope this helps!
GTG
Here's the page in question:
Any help would be appreciated! I have included my CSS below
Code:
A
{
text-decoration: none;
}
A:hover
{
text-decoration: underline;
}
A:visited
{
text-decoration: line-through;
color: blue;
}
table, TD, TH, P
{
border-collapse: collapse;
border-color: dimgray;
color: LightGrey;
font-size: x-small;
}
DIV.main
{
left: 350px;
position: absolute;
}
DIV.left
{
left: 200px;
width: 150px;
position: absolute;
height: 100%;
background-color: black;
}
DIV.ltentry
{
font-size: smaller;
padding-bottom: 4pt;
margin: 3px 3px 3px 10px;
color: black;
padding-top: 4pt;
font-family: Verdana, Arial;
text-decoration: none;
}
DIV.lttitle
{
font-size: larger;
color: gainsboro;
border-bottom: thin solid;
font-family: Verdana;
letter-spacing: 7px;
}
Hope this helps!

GTG