Hi Why is it that my css for this P class does not show up ? echo "<p class=\"message\">Thank you for signing up our newsletter</p>"; Code (markup): Thank you
That's valid, and not a PHP error. Check your CSS. Dan p.s. Single quotes are better, and breaking out of PHP is better still. <?php echo '<p class="message">Thank you for signing up to our newsletter</p>'; ?>