change font size

Hi, I have set up Formtoemail and got it all working fine. I need to increase the size of the text that people type into the text boxes on the form. I worked out how to increase the box size but not text size. The css div does not seem to affect the contents of the box, can anyone please help?

Just add a style tag to the text box you what to increase like below.

[php][/php]

don’t do it inline…

in your css file

#mytextbox {
    font-size:24px;
}

or…

input[type='text'] { font-size:24px; }

input[type='text'] { font-size:24px; }

I never seen that done before - Thanks for the tip.

Sponsor our Newsletter | Privacy Policy | Terms of Service