Plugin Support
Yurii
(@yuriinalivaiko)
Hello @hrtc3c7
No, this is not normal behavior. Ultimate Member uses color #3ba1da and hover color #44b0ec for the buttons background. Maybe your theme overrides the button background color and changes it to white or transparent.
Try to override the button colors using this CSS code snippet:
/* override the button color */
.um .um-button,
.um .um-button.um-do-search {
background-color: #3ba1da;
color: #ffffff;
}
.um .um-button:hover,
.um .um-button.um-do-search:hover {
background-color: #44b0ec;
}
You can add CSS code to the style.css file in the child theme or use the “Additional CSS” field on wp-admin > Appearance > Customize > Additional CSS if your theme supports this feature.
Regards
Thank’s
This solve my issue