Home Forums WoodMart support forum I can't figure out how to change the color of the text in the login / registrati

I can't figure out how to change the color of the text in the login / registrati

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #317926

    Maksss_ssskaM
    Participant

    Hello. Sorry for my crooked English 🙂
    Please tell me how to change the color of the text on the right button. The login / registration form is by default.

    Attachments:
    You must be logged in to view attached files.
    #317930

    Hello,

    Thank you very much for choosing our theme and for contacting us.

    You can change the color of the button in the Theme Settings > Style and colors > Buttons https://xtemos.com/docs/woodmart/theme-settings-panel/#buttons

    If you want to change the color of the button only on this particular page let me know I will give you custom CSS.

    Best Regards

    #317953

    Maksss_ssskaM
    Participant

    Unfortunately, the text on buttons changes everywhere except for this button. I would be glad if you can provide css 🙂

    #317962

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global:

    body .register .button, 
    body .login .button, 
    body .lost_reset_password .button {
        color: yellow;
        background-color: red;
    }
    body .register .button:hover, 
    body .login .button:hover, 
    body .lost_reset_password .button:hover {
        color: red;
        background-color: yellow;
    }

    Change the colors as per your needs.

    Best Regards

    #317968

    Maksss_ssskaM
    Participant

    Thank you for your help!
    Unfortunately, the wrong button is changing 🙁
    I want to change the color of the right button, which acts as an endpoint

    Attachments:
    You must be logged in to view attached files.
    #318029

    Maksss_ssskaM
    Participant

    Not relevant anymore, I figured it out:)

    body .wd-switch-to-register{
    color: white;
    }
    body .wd-switch-to-register:hover {
    color: white;
    }
    body .wd-switch-to-login{
    color: white;
    }
    body .wd-switch-to-login:hover {
    color: white;
    }

    Attachments:
    You must be logged in to view attached files.
    #318161

    Hello,

    Login button is here:

    body .login .button {
        color: yellow;
        background-color: red;
    }
    body .login .button:hover{
        color: red;
        background-color: yellow;
    }

    Please copy the code from the forum.

    Best Regards

Viewing 7 posts - 1 through 7 (of 7 total)