• Resolved token4token

    (@token4token)


    I’ve searched the forum for answers but have come up with nothing so far.

    I need to change the colors of font and buttons in my forms…how? where?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Ultimate Member Support

    (@ultimatemembersupport)

    Hi @token4token,

    You should use CSS e.g.

    .um input[type=submit].um-button,
    .um input[type=submit].um-button:focus,
    .um a.um-button,
    .um a.um-button.um-disabled:hover,
    .um a.um-button.um-disabled:focus,
    .um a.um-button.um-disabled:active {
        background: #3ba1da!important;
    }
    
    .um .um-button.um-alt:hover, .um input[type=submit].um-button.um-alt:hover {
        background: #e5e5e5!important;	
    }
    
    .um .um-button.um-alt, .um input[type=submit].um-button.um-alt {
        background: #e5e5e5!important;
    }
    
    .um a.um-link {
        color: #3ba1da!important;
    }
    
    .um input[type=submit].um-button:hover,
    .um a.um-button:hover {    
        background-color: #44b0ec!important;
    }

    Please check this doc for additional info.

    Regards.

    Thread Starter token4token

    (@token4token)

    Thank you!!! Much appreciated

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

The topic ‘Custom CSS for form text and buttons’ is closed to new replies.