|
Go to your html view. Find the links you want to change and add class="colorchange" into the link so it looks like this:
[code:1:046f610bea]<a class="colorchange" href="YOURPAGE.HTML"> [/code:1:046f610bea]
(YOURPAGE.HTML will be whatever is already there)
Then look at the top of the page in html view. See if you have a stylesheet. (You'll recognize it by the <style type="text/css">)
If you have that, put this in there:
[code:1:046f610bea]a.colorchange {color: #ffffff;}
a.colorchange:hover {color: #333333;} [/code:1:046f610bea]
If not, put this right under <head>:
[code:1:046f610bea]<style type="text/css">
a.colorchange {color: #ffffff;}
a.colorchange:hover {color: #333333;}
</style>[/code:1:046f610bea]
Make sense?
This is the only way I know how to do it as I don't know dreamweaver, I only know html.
|