Hi Lee,
You've done well to reach this point, certainly your concept was sound, we just need to make some style name changes to get this working. CSS can be tricky, and because of its cascading nature we sometimes need to be quite explicit.
I've tested some changes that I think you could add to your stylesheet which will mean you don't even need to add the leehlink class to your entry links.
Open style.css, remove your leehlink styles, and replace them with this;
Code: Select all
.serendipity_entry_body a, .serendipity_entry_extended a {text-decoration:underline; color:#0000FF;}
.serendipity_entry_body a:hover, .serendipity_entry_extended a:hover {background: gold;}
.serendipity_entry_body a:visited, .serendipity_entry_extended a:visited {color:#808080;}
Next, scroll to the top of style.css, and find the a and a:hover classes. They should be immediately under /****** General Styles ******/. Now replace those with this;
Code: Select all
a, .serendipity_entry_body a.continue_reading {color:#505050;
font-weight:bold;
text-decoration:none; }
a:hover, .serendipity_entry_body a.continue_reading:hover {color:#808080;
text-decoration:underline; }
These change mean that every link within the entry body or extended entry will be styled the way you want to be, but the continue reading link will stay grey (which I think is desirable).
Hope that helps,
Carl