• Resolved ronvanrutten

    (@ronvanrutten)


    I am trying to format the message you get when you have a successfull signup:

    Text to replace the form with after a successful sign-up is now:
    Thank you for subscribing to the official <b>Eddie Middle-Line Newsletter</b>.

    We’re happy to have you on board and appreciate your interest in Eddie Middle-Line !

    The bold tag works fine, but the text is black and should be white. Any suggestions what I need to add to the CSS file?

    For the signup this works fine:

    .nsu-signed-up-1{
    padding:10px;
    color:white;
    }

    But I need to change the output text colour and size.

    The signup works perfect btw, just the little kink that needs to be ironed out of the one I’m using ??

    Ron

    https://www.ads-software.com/extend/plugins/newsletter-sign-up/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi Ron,

    I would suggest one of the following methods instead of <b>Eddie Middle-Line Newsletter</b>:

    Either using your CSS file or adding CSS to a span tag around the text:

    Span Tag & CSS:

    <span id=newstitle>Eddie Middle-Line Newsletter</span>

    In your CSS file:

    #newstitle
    {
    	font-weight: bold;
    	font-color: white;
    
    }

    You can also control the font size by adding the font-size property.

    Style in the span tag:

    <span styl="font-weight:bold;font-color:white">Eddie Middle-Line Newsletter</span>

    https://www.w3schools.com/css/css_font.asp

    Hope this helps!

    Thread Starter ronvanrutten

    (@ronvanrutten)

    Unfortunately this didn’t help. When I save the span tag in the Form settings page (Text to replace the form with after a successful sign-up), the plugin removes the span tags.

    Back to square 1

    Hi Ron,

    Try adding this line to your CSS file (/wp-content/themes/that-music-theme/style.css):

    .nsu_widget{ color:white; }
    .nsu_widget p{ padding:10px; } // optional, aligns things a bit

    That should do it. ??

    Thread Starter ronvanrutten

    (@ronvanrutten)

    Danny, that fixed all my problems! Thanks again!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Newsletter Sign-Up] css in thank you message’ is closed to new replies.