Forum Moderators: coopster

Message Too Old, No Replies

Changing output font size

chnage output font size

         

codieB

4:58 pm on Dec 3, 2008 (gmt 0)

10+ Year Member



Hi,
I need a little help changing the output font size of an automated response. I am able to change the font size of the text on the form itself, but not the response.

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

milocold

10:29 am on Dec 4, 2008 (gmt 0)

10+ Year Member



Hi,

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

codieB

2:57 pm on Dec 4, 2008 (gmt 0)

10+ Year Member



Thanks---
However, I don't want to change all the text. Only the one line message that appears after visitors push SUBMIT.
Again, it is strange that the <font> feature works in front of the echo code for the form attributes, but doesn't work for the reply output. I guess that is my real question-----how to make the code work so that the reply text is larger. Please see the code above.

Can someone help with this? Most appreciated.
CB