Could someone take a look at my page at http://www.meadowlarkco.com/customersnew2.php and see why when I click on my link which starts “assuring everyday service…” why based on my css page allpages.css where I have
.splashcontentleft .Flexibility ul li a:link {
text-decoration:none;
color:#00f;
}
.splashcontentleft. Flexibility ul li a:hover {
text-decoration:none;
color:#00f;
}
.splashcontentleft. Flexibility ul li a:visited {
text-decoration:none;
color:#00f;
}
.splashcontentleft. Flexibility ul li a:active {
text-decoration:none;
color:#00f;
}
my link when I click on it doesn’t stay blue
thanks
In selectors for the second, third and fourth rules, you have
.splashcontentleft. Flexibility
rather than
.splashcontentleft .Flexibility
Im not following what you’re saying?
The dot to indicate class is in the wrong place. It should come at the start of Flexibility, not the end of splashcontentleft.
Thank you for elucidating, TB.
So, with the dots moved to the correct position, the CSS will be:
.splashcontentleft .Flexibility ul li a:link {
text-decoration:none;
color:#00f;
}
.splashcontentleft .Flexibility ul li a:hover {
text-decoration:none;
color:#00f;
}
.splashcontentleft .Flexibility ul li a:visited {
text-decoration:none;
color:#00f;
}
.splashcontentleft .Flexibility ul li a:active {
text-decoration:none;
color:#00f;
}