previously I had made it so that a visited link color for the below:
<p class="meadowtransport"><a href=" >Visit Meadow Lark Transport to lease on Equipment<img src="images/Logo Transport_newsite_small.png" alt="meadow lark transport" border="0" hspace="10"/></a></p>
is changed by:
.meadowtransport a:visited {
text-decoration: none;
color: #00f;
}
I have another class setup:
<div class="Claims">
<ul>Claims
<li>Professional Claims Department</li>
<li>$30,000 Surety Bond</li>
<li><a href=" Comp Endorsement</a></li>
</ul>
</div>
which I have the CSS set as:
.splashcontentleft .Claims ul li a:visited {
text-decoration:none;
color: 00F;
}
Claims is within .splashcontentleft, but the visited link isn't staying blue
The page is at if anyone could help me find out what I have incorect.
thanks
<p class="meadowtransport"><a href=" >Visit Meadow Lark Transport to lease on Equipment<img src="images/Logo Transport_newsite_small.png" alt="meadow lark transport" border="0" hspace="10"/></a></p>
is changed by:
.meadowtransport a:visited {
text-decoration: none;
color: #00f;
}
I have another class setup:
<div class="Claims">
<ul>Claims
<li>Professional Claims Department</li>
<li>$30,000 Surety Bond</li>
<li><a href=" Comp Endorsement</a></li>
</ul>
</div>
which I have the CSS set as:
.splashcontentleft .Claims ul li a:visited {
text-decoration:none;
color: 00F;
}
Claims is within .splashcontentleft, but the visited link isn't staying blue
The page is at if anyone could help me find out what I have incorect.
thanks