• Resolved maximx86

    (@maximx86)


    Hi,

    I was wondering if it’s possible to change the colour of the Register link only using some custom css so it stands out a bit more?

    Regards

    Max

Viewing 1 replies (of 1 total)
  • Plugin Contributor Abdul Wahab

    (@abdulwahab610)

    Hello, @maximx86

    Yes, it is possible.
    Copy the following CSS snippet and Paste it into custom CSS in LoginPress Customizer > Custom CSS/JS > Custom CSS section. Helping doc.

    // For change the register link text color
    .login #nav a:first-child {
        color: #56374f;
    }
    // For change the register link hover text color
    .login #nav a:first-child:hover{
        color: #560046;
    }

    Thank you.

Viewing 1 replies (of 1 total)
  • The topic ‘Change Register link colour only’ is closed to new replies.