• Resolved Angelique.van.Campen

    (@angeliquevancampen)


    Hi all,

    Hopefully somebody is able to help mw with this small issue. It deals with web link https://x-plane.web-ontwikkeling.com/wp-login.php.

    I’m trying to modify the Log in and Register windows, preferable without the help of a plugin although for the Log in I did use a reCAPTCHA plugin. Anyway, I managed to change the look and feel of the login window, but I’m stuck with the black vertical stripe in-between the “Log In | Lost Your Password?” or “Register | Lost Your Password?” text.

    Right now, all the changes I made on the WP login are via my Child theme with a folder created “login”. Except for the reCAPTCHA, the look and feel is via the Child function.php and a login_styles.css file. The only problem is the black stripe which I would like to have white too, same as the “Log In | Lost Your Password?” or “Register | Lost Your Password?” text.

    Anybody any idea or suggestion?

Viewing 3 replies - 1 through 3 (of 3 total)
  • That entire line has an ID of “nav” assigned to it, via a paragraph tag, so some CSS for that should do the trick. The other text is in white because they are all links, which the vertical line isn’t.

    try styling the black line character with:

    .login #nav { color: #fff; }

    simlar as you have styled the links with:

    .login #backtoblog a, .login #nav a {
      color: #FFFFFF;
    }

    Thread Starter Angelique.van.Campen

    (@angeliquevancampen)

    Hi guys,

    Thank you both, but in particular Michael. That did the trick. Once you know it, it seems all so easy, but finding the right coding is for me still not easy. I found at WP Org codex I think, a list of possible codes that are used for the login window. Will check that again.

    Anyway, many thanks. Much appreciated.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Vertical stripe Login (Register) | Lost your password?’ is closed to new replies.