• Resolved hrtc3c7

    (@hrtc3c7)


    Is it the normal behavior to have the search button in member directory page not really visible until mouse pointer is over ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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

    Thread Starter hrtc3c7

    (@hrtc3c7)

    Thank’s
    This solve my issue

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.