Forum Moderators: mack
to make your links same color as text just make links and text the same color
html ex:
<p style="color:red">
some text
<a href="link.com">
<font color="red">
link
</font>
</a>
some more text
</p>
table, tr, td, li, p, div { color:red; }
a:active, a:visited, a:link { color:red; }
to make them different colors its easiest to use html
ex
<p style="color:red">
some text
<a href="link.com">
<font color="blue">
link
</font>
</a>
some more text
<a href="link2.com"><font color="green">link 2</font></a>
even more text
</p>
dont be afraid to use a reference either ive know html since i was 15 and i still use a reference although dream weaver is a WYSIWYG html editor its still good to know your tags
[edited by: sn4x at 3:23 pm (utc) on July 19, 2007]