• Resolved thomazbene

    (@thomazbene)


    Hello, i’m need change “Next” – “Previous” Button color of the form.

    Can you help me?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author SilkyPress

    (@diana_burduja)

    Hello,

    the buttons should inherit the theme’s design and color, if the theme defines CSS rules for the “.button” selector.

    But you can change the color of the buttons by adding the following CSS rule to your website:

    .wpmc-nav-wrapper .button {
        background-color: #ff0000;
    }

    where #ff0000 is the color.

    You can use the “WP Admin -> Appearance -> Customizer -> Additional CSS” page to add the CSS rule.

    Thread Starter thomazbene

    (@thomazbene)

    I tried it the way you suggested, but it didn’t work. Is there any other way I can change the color of the button?
    PRINT

    Plugin Author SilkyPress

    (@diana_burduja)

    Try the following:

    .wpmc-nav-wrapper .button {
        background-color: #ff0000 !important;
    }

    If it still doesn’t work, then I’ll need a link to your website so I can have a look at the page’s HTML.

    Thread Starter thomazbene

    (@thomazbene)

    This second code works!!

    Thank you so much for support Diana, you are great

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

The topic ‘Change Button Color’ is closed to new replies.