I can't figure out how to change the color of the text in the login / registrati
-
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.
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
Unfortunately, the text on buttons changes everywhere except for this button. I would be glad if you can provide css 🙂
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
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.
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.
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