Bank holdup redefined....
Posts: 4,724
Name: Tim Daily
Location: Apex, NC, US, Sol 3
|
A link to the page would help. First off, CSS rules go in order of specificity; that is, say, from an outer named div to one nested further in. Also, style rules for a go in order, link, visited, hover, active (LoVeHAte is the mnemonic). Sorry to say, but that CSS is a mess. What you need is something like:
Code:
.twocol a:link{
color: #fff;
text-decoration: underline;
font-size: 10px;
}
/*insert rule for visited*/
.twocol a:hover{
color: #ccc;
text-decoration: none;
font-size: 10px;
}
You shouldn't need to define it more than that, but if the footer ID is the parent, then it would read #footer.twocol a: link, and so on.
Edit: LnR, should I revise this in any way?
tim 
Last edited by serandfae : 04-07-2008 at 12:55 PM.
|