How to change font size
- PortalsAsked on September 28, 2013 at 01:46 PM
- gori-mathewAnswered on September 28, 2013 at 01:54 PM
Hi,
To change the font size you may inject these CSS codes to your form...
For text area:
.form-textarea {
font-size:15px;
}
For text box:
.form-textbox {
font-size:15px;
}
Assuming you wish to use the same font size for both types of inputs, you can use the following rule set:
.form-textbox, .form-textarea {
font-size:15px;
}
Of course, you would change "15" to whatever size is preferable.
Thank you.