• I’d like to change the color of text in the WP login page that reads “lost your password” and “back to blog”. I believe the answer is the wp-admin.css file, but have no idea where or what # = a different color.

    http://www.200seconds.com/

    Josh

Viewing 2 replies - 1 through 2 (of 2 total)
  • The CSS for the login screen is around line #550 or so in the wp-admin.css file. The easiest way is to add two classes to your CSS file. Add these lines:
    #login ul li a {
    color: #008800;
    }
    #login ul li a:hover {
    color: #880000;
    }

    These will make the links green and when you mouse over them, the links will turn red. You can play with the colors all you want, just remember not to make either of them white or you won’t be able to see them.

    Thread Starter joshbraun

    (@joshbraun)

    Thanks for your prompt reply,
    I added the two lines, but nothing happened. Does it matter where I place the code in s css file?

    a.delete:hover {
    background: #c00;
    color: #fff;
    }

    #login ul li a {
    color: #008800;
    }
    #login ul li a:hover {
    color: #880000;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing font color in wp-login page’ is closed to new replies.