is it possible to add specific link colors to a css?
if so how?You mean like
<style type="text/css"><!--
A:link {color:#06c; }
A:visited {color: #06c; }
A:active {color: #06c; }
A:hover{color:#06c; }
--></style>
in your head section??
you can also add
background:#ffc;
etc etc etcDo you mean making some links different colors than others?
Just make different classes
a:link.othercolor {color:#...}
<ahref=http://www.webdeveloper.com/forum/archive/index.php/"page.html" class="othercolor">
if so how?You mean like
<style type="text/css"><!--
A:link {color:#06c; }
A:visited {color: #06c; }
A:active {color: #06c; }
A:hover{color:#06c; }
--></style>
in your head section??
you can also add
background:#ffc;
etc etc etcDo you mean making some links different colors than others?
Just make different classes
a:link.othercolor {color:#...}
<ahref=http://www.webdeveloper.com/forum/archive/index.php/"page.html" class="othercolor">