If you can include HTML, you should also be able to include inline style. This will allow you to color and/or do just about anything to the style of individual parts of the included HTML. However, and I have had some experience with an earlier (probably much earlier) version of overLib, when putting style into tags that you put into some syntax that will be used by overLib or any script, quoting can become a little complicated. Sometimes quotes and/or single quotes must be escaped:
Code:
<a href=\"some.htm\" style=\"color:red;\">Link text</a>
Sometimes even that isn't good enough and if quotes can be skipped (as they can in the above):
Code:
<a href=some.htm style=color:red;>Link text</a>
That will do it.
Or a class or id name may be used and styled in a stylesheet:
Code:
<a href=some.htm id=ol_link1 >Link text</a>
Sometimes other things need to be done. There is almost always a way (or several ways) to make it work. If you were to put up an example page of what you are trying to do I might be able to get it to work for you.
Bookmarks