Ok. CSS isnt my forte, so here i go.
I want to make a div rollover with CSS, the background colour would change, thats all. I dont know if this does anything, but the div is going to be a link too.
so far i have.
div.module#navigation div.asset {
border-bottom: 1px #B6B6B6 solid;
padding:0px 1px 0px 0px;
margin-right:5px;
}
div.module#navigation div.asset:hover {
background-color:#580101;
}
and
div.navsub {
margin-right:10px;
border-bottom: 1px #B6B6B6 solid;
padding:0px 1px 0px 0px;
}
div.navsub:hover {
background-color:#6B0101;
}
they work perfectly in firefox, you can see them at www.dinkumrocks.com/ad/options.asp , its under the navigation thing.
It wont work in IE, and im really stumped, anyone?
-Naaman