As you've no doubt realized by now, HTML has its own default
styles for major elements like hyperlinks, lists, etc. However, you
can create any number of classes to address this issue (see this
w3 web site for
plenty of good info).
The .css link sample below would be called in your topic as:
<a class=MyLink href="MyTargetTopic.htm">.
Note that although you can combine two or more
pseudo-classes, separated with commas, they must appear in the
"LoVeHAte" order:
Link,
Visited,
Hover,
Active. (I don't bother with Active, as seen in my example,
but some folks do.) You'll notice in the default.css, which is
provided for every project, that there are classes used for
A.expandspot (expanding text) and A.dropspot (dropdown text).
This method will allow you to use only one .css file for all
your topics, as you call only the class you need at each hyperlink.
Good luck,
Leon