TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
Subject:Re: Website readability-blue text From:"Brian, Flaherty" <bflaher -at- INDCON -dot- COM> Date:Wed, 19 Aug 1998 17:11:59 -0400
Style sheets/CSS can be used to override hypertext link and alpha
characteristics on web pages. Note the following example:
<STYLE TYPE="text/css">
A {
text-decoration: none;
color: brown }
A:hover {
color: blue }
</STYLE>
In this example, *text-decoration* turns off the default coloring and
underlining for the A tag. The hyperlinks now appear in brown. If you
are using IE version 4.x, the hyperlink turns blue when you position the
pointer on the hyperlink (but turns back to brown when the pointer goes
off the hyperlink). Note that *A:hover* does not work for Navigator (at
this time), and the A tag will remain brown even when you position the
cursor on the hyperlink. Also note that the user can turn off CSS
styling in their Browser Options area. So, if the user opts to *ignore*
CSS styling, none of the above STYLE tag declarations will apply.
The above example is an *inline style* that applies the style to the
currently loaded page only. You can reference an external CSS sheet via
a <LINK> tag.