I get a script from a website to put it into my website, but the font color is not what I want.
The script is:
<script language="javascript" src="http://www.parstools.net/calendar/?type=2"></script>
and now I want to change the font color of it. What should I do?
I would really appreciate your help, thanks.
Examining the source of that script, it is simply writing an anchor link with
document.write():You may want to include that script inside a
<div>, and then style the anchor links within that<div>using CSS:Then you should also add the following CSS class definition:
The following is a full example: