Forum Moderators: mack

Message Too Old, No Replies

Dreamweaver Help

Dreamweaver

         

Brianji

2:50 pm on Jul 19, 2007 (gmt 0)

10+ Year Member



I'm Using Adobe Dreamweaver to build a site and was wanting to know if their is a way to have more than one link color, or no link color at all. when i link one of my buttons i made it puts a border around it so i make that match the backround but then when i want to link some text it does not show up lol can anyone help me?

sn4x

3:07 pm on Jul 19, 2007 (gmt 0)

10+ Year Member



you could use css or html to define you default link color

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>

css ex:

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]

sn4x

3:09 pm on Jul 19, 2007 (gmt 0)

10+ Year Member



now i found the edit button so i feel like an idiot for double posting.......

to the person that posted bellow me:
i dont know tell me >_> does it work?

[edited by: sn4x at 3:48 pm (utc) on July 19, 2007]

Brianji

3:44 pm on Jul 19, 2007 (gmt 0)

10+ Year Member



Yea the new cs3 has the edit button i have not tried that yet hummm does that work?