location.href siempre te redireccionará a página. Te sugiero que uses algo así para cargar hojas de estilo:
Código PHP:
function loadCss(css) {
if(document.getElementById('estilos'))
document.getElementsByTagName('head')[0].removeChild(document.getElementById('estilos'));
var x = document.createElement("link");
x.rel="stylesheet";
x.href=css;
x.id="estilos";
document.getElementsByTagName('head')[0].appendChild(x);
}
loadCss('estilos.css');