<STYLE type="text/css">
A:link { color:COLOR; text-decoration:none; }
A:visited { color:COLOR; text-decoration:none; }
A:active { color:COLOR; text-decoration:none; }
A:hover { color:COLOR; text-decoration:none; }
</STYLE>

A:link = when its just siting there(normal)
A:visited = when you've visited it before
A:active = when it's clicked on
A:hover = when your mouse is over it

Decorating Time!

Just look at where it says "text-decoration:none;" and change the none part. Now if it's something like font-weight:bold; then just add it to the {...} part.
Example:
{color:COLOR; text-decoration:underline; font-weight:bold;}
Hope that makes it easy enough for you.
Note if you just leave it as text-decoration:none; it'll make the underline on the links go away.

hover over the text for examples of the cursors
underline
text-decoration:underline;
underline overline
text-decoration:underline overline;
border underline
border-bottom:#pt SOLID COLOR;
background color
background-color:COLOR;
bold
font-weight:bold;
italic
font-style:italic;
srikeout
text-decoration:line-through;
uppercase
text-transform:uppercase;
LOWERCASE
text-transform:lowercase;
capitalize
text-transform:capitalize;
default cursor
cursor:default;
cross cursor
cursor:crosshair;
cursor points up
cursor:n-resize;
cursor points sideways
cursor:sw-resize;
cursor points left
cursor:w-resize;
cursor points sideways
cursor:nw-resize;
wait cursor
cursor:wait;
help cursor
cursor:help;
change font size
font-size:#pt;
change position
position:relative;left:#px;top:#px;
background image
background:url(IMAGE URL);


COPY®IGHT 2003 HooPYhoO92