Viewing 4 replies - 1 through 4 (of 4 total)
  • in the CSS file,
    body {
    background: #fff;
    color: #000;
    margin: 0;
    padding: 0;
    }
    would change it to white… but note that this will change the background throughout the admin interface.

    Thread Starter cynikalsam

    (@cynikalsam)

    Yeah thats the problem. I tried that, but i just want the login page black, but i dont want to change anything after that..
    Is that possible?

    Sure, create a seperate CSS file just for the login page (then edit the login page so it looks at the special CSS file) and then put the code below in that CSS file:
    body {
    background: #000;
    color: #000;
    margin: 0;
    padding: 0;
    }

    Thread Starter cynikalsam

    (@cynikalsam)

    Ok i’ve changed the color. Thanks guys.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Modifying wp-login.php’ is closed to new replies.