Rollover Colour Problems

3DSDan

New Member
I've set the rollover colour as dark green in the page properties for all links on the following page:

architectural rendering

however you'll notice that the links stays white when you roll over them. The next image page's link rollover colours are set in exactly the same way and they work. I'm using Dreamweaver CS3.

What am I missing?
 

jnjc

New Member
I don't use dreamweaver so I can't tell you how to fix it there but if you add the change (outlined in bold) to the top of your .html you should be OK.


Code:
<style type="text/css">

<!--
[B]a:hover {
	color: #525352;
}[/B]

body {
	background-color: #6D796F;
}
a:hover {
	color: #525352;
}
body,td,th {
	color: #F0E9CC;
}
a:link {
	color: #F0E9CC;
}
.style1 {font-family: Tahoma}
a:visited {
	color: #F0E9CC;
}
a:active {
	color: #F0E9CC;
}
-->
</style>


HTH,
JC
 

mezangath

New Member
I'm just curious, i'm using DWCS3 aswell, did DW set up a Javascript for it?

Since DW (earlier versions atleast) almost always solved everything with js:s for dynamic changes :)
 

DimitriDV

New Member
a:link
a:visited
a:hover
a:active


you need to place these in de CORRECT order, like this
hint: LVHA ~ LoVe HAte
 
Top