Ya he encontrado el problema...no me está viniendo de CSS, sino de algo que pensaba que no tenía y se ve que al deshacer algunos cambios, quité el comentario de esa línea.
Mi fallo viene de jQuery (tenéis que mover el tema o tengo que crear uno nuevo?), con una función que me facilitaron en este foro:
Código Javascript
:
Ver originalfunction scrollSuave(id_menu){
//id_menu es el id del menu al que quiero asociarlo
var asociaMenu = "#"+id_menu+" ul a[href*=#]";
$(asociaMenu).click(function() {
if (location.pathname.replace(/^\//,'') === this.pathname.replace(/^\//,'')
&& location.hostname === this.hostname) {
var $target = $(this.hash);
$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
if ($target.length) {
var targetOffset = $target.offset().top;
$('html,body').animate({scrollTop: targetOffset}, 1000);
return false;
}
}
});
}
En cuanto asocio dicho código, es cuando ya me falla.
Siento la pérdida de tiempo pzin ;) ;) ;) pero pensaba que me vendría todo de CSS