• Resolved testerimaker

    (@testerimaker)


    Hi I want to change my registration button color but I have no idea how to write the css code:

    <before hover>
    background color: black
    border: 1px black
    font color: white

    <after hover>
    background color: white
    border: 1px black
    font color: black

    Please help!

    The page I need help with: [log in to see the link]

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

    (@sanjuacharya77)

    Hi @testerimaker,

    Thanks for writing in. Please add the given custom CSS and it will do a trick.

    .ur-frontend-form button[type=submit]{
        border: 1px solid #1e1e1e !important;
    }
    .ur-frontend-form button[type=submit]:hover{
        color:#1e1e1e;
        border: 1px solid #1e1e1e;
    }

    Paste this code in the additional CSS box. You can find the additional CSS box in your theme customization option. Click on Appearance > Customize and then scroll a bit and you will see the Additional CSS box. Paste this code there and it will do the trick.

    Let me know whether it helps or not and I will get back to you.

    Thank you ??

    Thread Starter testerimaker

    (@testerimaker)

    Thank you so much! It works perfectly!

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