Forum Moderators: coopster
Basically, visitors fill out the form and when they push SUBMIT, get this:
Thank you. Please check your email for the access link.
The type is too small and I would like to modify it.
I have tried:
echo '<font size="24">'; echo "Thank you. Please check your email for the access link."; echo '</font>';
}
as well as:
echo '<font size="24">'; echo "Thank you. Please check your email for the access link.";
}
echo '</font>';
Your help would be greatly appreciated.
Thank you
You might wanna check you css for styles attached to the font element.
The following will produce 12px red text regardless of the font tag/size attribute.
<style type="text/css">
font {
color: red;
font-size: 12px;
}
</style>
<?php
echo '<font size="24">';
echo 'I <3 M. Cold';
echo '</font>';
?>
M. Cold
Can someone help with this? Most appreciated.
CB