help a lost newb

Associate
Joined
18 Apr 2008
Posts
25
Hey guys, i need a little help. I'm currently bundling my way through Dreamweaver CS3 trying to get my girlfriends website up and running for her uni course.

I am sort of getting there with a lot of the things i was having trouble with but there is one thing that is ******* me off.
I can't get the mailto: loinks to not be purple and rollover. for some reason they are either purple and rollover to the colour i want them to. Or they are not purple but don't rollover.

I have tried editing using CSS, but am a bit lost. The main page properties don't seem to change anything either.

Any help would be great

Cheers

Dave

Watch your language.
 
So it doesn't work even if you change it here? (right click design view, page properties)

change_link_colours.png
 
In CSS, its the a, a:hover and a:visited properties you need to edit.

For example:

Code:
[COLOR=magenta]a {[/COLOR]
color[COLOR=magenta]:[/COLOR] [COLOR=dimgray]#000000[/COLOR][COLOR=magenta];[/COLOR]
[COLOR=magenta]}[/COLOR]
 
[COLOR=magenta]a:visited {[/COLOR]
color[COLOR=magenta]:[/COLOR] [COLOR=dimgray]#000000[/COLOR][COLOR=magenta];[/COLOR]
[COLOR=magenta]}[/COLOR]
 
[COLOR=magenta]a:hover {[/COLOR]
color[COLOR=magenta]:[/COLOR] [COLOR=dimgray]#000000[/COLOR][COLOR=magenta];[/COLOR]
[COLOR=magenta]}[/COLOR]
 
Last edited:
Unless the site is already taking its values from an external CSS document, in which case it wont matter what you put on the properties of the page, the CSS when loaded on pageload will override it.
 
Unless the site is already taking its values from an external CSS document, in which case it wont matter what you put on the properties of the page, the CSS when loaded on pageload will override it.

I thought css on a page overwrites an external file?
 
craig 321.

it doesnt seem to change the colour to what i would like it to be.
If i use the page properties it is then purple whn not rolled over but when i do rollover it it goes to the colour i want.
Thats why i ventured into CSS. It gets rid of the purple but then it doesn't change when selected/rollover (or hover in the case of css)

I'll have another bash and see if i get rid of the styles and start again that'l help.

Cheers guys
 
hi guys, got it fixed.
I followed paradigms method and that was all correct without fixing the problem.

So i went into the CSS style sheet and went to edit and found that no border colour was specified. so i specified one and yipee-kay-ay. fixed!

Cheers again guys


Dave
 
Back
Top Bottom