A ver si esta idea te sirve, entonces:
Código html:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> /* resto de los enlaces*/
a:link {
background: transparent;
color: #000000;
}
a:hover {
background: transparent;
color: #FFCC00;
}
/* enlaces para el menu*/
#menu a:link {
background: #FFFFFF;
color: #FFFFFF;
}
#menu a:hover {
background: #000000;
color: #FFFFFF;
}
Si el menú, por ejemplo; lo tenés dentro de DIV (id=menu) podés visualizarlos de otra manera restringiendo esto al correspondiente ID
Suerte!