• Hi,

    I installed the widget, it works great. I’m using the Breakpoint theme on Genesis and want to change the text color that appears AFTER submission in the widget that says, “Check your inbox now to confirm your subscription.” Right now it is black, it needs to be white, that’s all. I am using it with MailPoet.

    Where/how can I do that? The plugin editor? Just add custom CSS? I just don’t know WHERE to do it! Thanks.

    https://wordpress.org/plugins/genesis-enews-extended/

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

    (@kraftbj)

    Code Wrangler

    Howdy,

    Custom CSS would be the place to do it, either in your theme’s style.css or via something like Jetpack’s Custom CSS module.

    Something like

    .enews form {
    text-color: (your preferred color);
    }

    should do it, but I haven’t specifically texted it.

    Thread Starter beelenz

    (@beelenz)

    Tried it in the WordPress CSS Stylesheet Editor but it just deletes the text-color line and ends up doing nothing and looking like this:

    .enews form {
    }

    I used #FFFFFF but it goes away.

    Plugin Author Brandon Kraft

    (@kraftbj)

    Code Wrangler

    I’m not sure what I was thinking. Can you try

    .enews form {
    color: #FFFFFF;
    }

    The color rule really should be named text-color and I totally goofed on you. I’m sorry!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change text color after submission in widget’ is closed to new replies.