Re: List items inside a span are casuing me validation problems.
you want to keep the ones that you have already in your left_links class. The deleting of attributes will only be done after you copy all the attributes over from your other class (nav_items_00). Only delete attributes if you have duplicates like they both have a color attribute, but you want to keep your left links one.
Made up Example:
.left_links a:link {
color: #c0c0c0;
text-decoration:none;
}
.nav_items_00 a:link {
color: #999999
text-decoration:none;
font-size: 10px;
}
*now COPY the nav_items attributes and paste into left_links (Don't cut, because you want to keep your other attributes where they are)
.left_links a:link {
color: #c0c0c0;
text-decoration:none;
color: #999999
text-decoration:none;
font-size: 10px;
}
.nav_items_00 a:link {
color: #999999
text-decoration:none;
font-size: 10px;
}
*Now delete the duplicates that you don't need
.left_links a:link {
color: #c0c0c0;
text-decoration:none;
font-size: 10px;
}
.nav_items_00 a:link {
color: #999999
text-decoration:none;
font-size: 10px;
}
That is what I was talking about doing. Maybe I didn't understand your question correctly, but this is what i believe my solution would be if I have the problem right.