• Hello WordPressers!

    Wonder if you can help as I am well and truly stuck!

    I want to change the button background colour & border in newsletter widget so its background / border is #203473 with #FFFFF text. At the moment I cannot find the default colour setting anywhere for this widget.

    https://fmbsusa.engagecrm.co.uk/about-us/

    Hope you can help!

    Chris

Viewing 1 replies (of 1 total)
  • I can’t speak to the widget you are using, but custom CSS should do the trick. input[type="submit"] is the selector currently controlling the default colors and .newsletter-submit is overriding the background and text color using the !important flag.

    Try removing the existing .newsletter-submit selector from your CSS and use this instead.

    input[type="submit"].newsletter-submit {
        background: #203473;
        border-color: #203473;
        color: #FFF;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Change colour of button background and text’ is closed to new replies.