Nevermind the admin user. The reason your child theme styles aren’t showing up is because you have syntax errors in your child theme CSS. Specifically, you should change this block:
#access {
/*background: linear-gradient(#745f94, #393f78) repeat scroll 0 0 transparent; */
background: #745f94;/* Show a solid color for older browsers */
background: -moz-linear-gradient (##745f94, ##393f78);/*(#252525, #0a0a0a); */
background: -o-linear-gradient (##745f94, ##393f78);/*(#252525, #0a0a0a); */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(##745f94), to(##393f78)); /* older webkit syntax */
background: -webkit-linear-gradient(##745f94, ##393f78;
margin: 0;
}
to this:
/*change nav gradient color*/
#access {
/*background: linear-gradient(#745f94, #393f78) repeat scroll 0 0 transparent; */
background: #745f94;/* Show a solid color for older browsers */
background: -moz-linear-gradient (#745f94, #393f78);/*(#252525, #0a0a0a); */
background: -o-linear-gradient (#745f94, #393f78);/*(#252525, #0a0a0a); */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#745f94), to(#393f78)); /* older webkit syntax */
background: -webkit-linear-gradient(#745f94, #393f78);
margin: 0;
}
Notice changing ##
to #
and the addition of a closing parentheses on your last background
line, webkit-linear-gradient
. It was that lack of a )
that was causing your error. The other changes will just fix your colors in some browsers.