How do you change the font in textboxes?

How do you change the font in textboxes? I saw your response to @davidmoss regarding the Styles.css and body font size. Can I do something to change the textbox size?

Yes, a similar approach will change the font-size of the text boxes. If you want to globally change it use the following CSS in the styles.css file:

input {
  font-size: 13px !important;
}

if you only want to change it inside forms use this:

form .form-control {
  font-size: 13px !important;
}

Best regards,
Atanas

Perfect. That took care of it.