• Resolved timfreising

    (@timfreising)


    Hi,

    I just installed the plugin and I was trying to change the submit button to match the theme buttons.

    I can’t seem to get the CSS to work, even with !important.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WPKube

    (@wpkube)

    Hi @timfreising

    The plugin inherits the CSS rules from the theme for the styling.

    In your case it gets the rules from this:

    .button, a.button, a:visited.button, button.button, input.button, input[type="button"], input[type="submit"], #wrap a.tribe-events-button {
        color: #fff;
        background-color: #e15e4c;
    }

    Which is in the theme’s style.css on line 140.

    If you want to change it you can use:

    #scf-button {
        background: red;
        color: white;
    }
    Thread Starter timfreising

    (@timfreising)

    Thank you. That worked perfectly. I also was able to add the hover effect.

    Plugin Author WPKube

    (@wpkube)

    You’re welcome

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘CSS for changing the button not woring?’ is closed to new replies.