I've customized the login/account text with the following:
span.unauth {
visibility: hidden;
}
span.unauth:after {
visibility: visible;
content: "sign in";
}
span.auth {
visibility: hidden;
}
span.auth:after {
visibility: visible;
content: "hi! view account";
text-align: center;
}
But what I would really like it to display is 'hi, welcome back [customer name]' or something to that effect. Is this possible or should I just leave it as a generic 'view account'?
BONUS PROBLEM: In the mobile view, the login/account link is off to the side while the other navigation items are centered. Halp!