Hello,
I was wondering how i could change the colour of the text at the bottom of the login/register page? The bit that says: Register | Lost your password? The page im wanting todo it on is: http://benmcgarry.info/wordpress1/wp-login.php
Im using a custom css file to change the page and i was wondering what css code is needed?
Thanks
the css is
body.login #login p#nav a { color: #abc789; }
I just tried that and it didnt work. This is what my css looks like at the moment:
html {background:#17272d;} /* Page background. Can't use the body tag for this! */
h1 a { /* Title image (The "WordPress Logo"). Remember to update the height and width your image's dimensions */
background:url(./images/cpalelitelogo.png) 0 0 no-repeat;
width:332px;
height:36px;
}
body.login {border-top-color:#17272d;} /* Top bar background color */
.login p#backtoblog a:link, .login p#backtoblog a:visited {color:#17272d;} /* Link effects in top bar */
.login p#backtoblog a:hover, .login p#backtoblog a:active {color:#17272d;text-decoration:underline;} /* Rollover link effects in top bar */
.login #login p#nav a {color:#FFFFFF;}
input.button-primary {
background:#17272d;
border-color:#000000;
color:#FFFFFF;
font-weight:bold;
text-shadow:0 -1px 0 rgba(0, 0, 0, 0.3);
}
input.button-primary:active {
background:#17272d;
color:#000000;
}
input.button-primary:hover {
border-color:#000000;
color:#CCCCCC;
}
.login .message {
background-color:#FFFFE0;
border-color:#E6DB55;
{
it woudl work with !important - not my first choice, but i couldn't find any combination specific enough:
.login #login p#nav a {color:#ffffff!important;}