• Hey guys, i’m trying to add custom CSS in my child-theme just to change the button color and button hover color of the SELECTED button (eg ‘login’) my combinations just don’t seem to be working =/ eg.

    .um-button
    .um input[type=submit] {
    background-color: #242424;
    }

    thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • Hi, I’m having the same problem.
    Before 2.0, it was possible to change field and button colors in the settings, but that doesn’t seem to be available anymore. I need to change field and button and icon colors in login and profile forms.

    Thanks.

    • This reply was modified 6 years, 10 months ago by ocdocbeheer.
    Plugin Support Ultimate Member Support

    (@ultimatemembersupport)

    Hi @auranoc and @ocdocbeheer,

    Please add your CSS to your theme custom CSS section and add !important attribute e.g

    .um-button
    .um input[type=submit] {
    background-color: #242424 !important;
    }

    Regards.

    Thread Starter Auranoc

    (@auranoc)

    Doesn’t seem to be working =/

    Plugin Support Ultimate Member Support

    (@ultimatemembersupport)

    Hi @auranoc,

    Where have you added this CSS?

    Regards.

    Thread Starter Auranoc

    (@auranoc)

    Themes custom CSS. This works –
    /* Profile Nav Bar */
    .um-profile-nav {
    background-color: #202020
    }
    .um-profile-nav-item.active a:hover {
    background-color: #d63232 !important;
    }

    /* Members profile colors selector */
    .um
    .um-profile-nav-item.active a {
    background-color: #b42121;
    }

    But can’t get the submit button code to work

    Hi there!

    I have another issue according to the Button.

    I want to change the border-radius from 4px to 25px. I tested different changes in um.min.css but nothing seems to work ;(,

    Anyone ideas? Thank you very much.

    The devs use !important pretty often throughout the styles. This means you can’t override most of the styles, like padding, border-radius.

    It’s particularly frustrating because their button styles don’t match my site.

    Also,
    Is there a way to change the text color for a specific form. I tried doing so in the form creation area and it does not work.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘.um-button’ is closed to new replies.