Dear Philomena,
Please go to yoursite/templates/sj_news25/css/template.css and find:
ul.yt-user-lr li a.show,
ul.yt-user-lr li a.login-switch:hover,
ul.yt-user-lr li a.register-switch:hover{
text-decoration:underline;
background:url(../images/li_hover_login.png) repeat-x top center;
color:#fff;
height:30px;
display:inline-block;
}
=>
ul.yt-user-lr li a.show,
ul.yt-user-lr li a.login-switch:hover,
ul.yt-user-lr li a.register-switch:hover{
text-decoration:underline;
background: #457A9F
color:#fff;
height:30px;
display:inline-block;
}
And find:
#yt_login_box, #yt-user-reg {
background:#0096FF;
box-shadow: 0 0 2px #888888;
height: auto;
padding: 6px 0;
position: absolute;
top: 30px;
z-index:999;
}
=>
#yt_login_box, #yt-user-reg {
background: #457A9F;
box-shadow: 0 0 2px #888888;
height: auto;
padding: 6px 0;
position: absolute;
top: 30px;
z-index:999;
}
Thanks