On this test page http://shyamasundaradasa.com/jyotish/temp/test_delete.html
I use the "fancy-quote-dark" in the middle of the page. It is customized to match the general color scheme and is gold (ish) on a dark blue background, as opposed to the original white on black. Because of the dark background colors if the quote happens to have a link in it, it merges into the background and is hard to see.
I tried to make a custom class of links but for some reason it is not working.
a.fancy-quote-dark:link {
color: white;
text-decoration: none;
}
a.fancy-quote-dark:visited {
color: white;
text-decoration: none
}
a.fancy-quote-dark:hover {
color: #6082BF;
text-decoration: none;
}
a.fancy-quote-dark:active {
color: red;
text-decoration: none
___________
These colors are just for playing around with and I would tweak them but before I can do that I have to get the links to work.
I basically just used a set of working links for a different class and applied them to "fancy-quote-dark" but they don't work.
What am I doing wrong?