Skip to main content

Looking to change the font size in a form field so it looks bigger when using a tablet in kiosk mode.

 

the Knowledge Base advice at 

 

http://help.pardot.com/customer/en/portal/articles/2125998-changing-the-size-of-form-text-and-text-area-input-field-areas?b_id=11139

 

is not working.  Please see MS Word doc of HTML in template

 

This is not my HTML, I cloned it from a colleague's template so please forgive me if the HTML is not as "elegant" as it should be.

 

Any ideas?

5 comentarios
  1. 8 nov 2017, 17:39

    So your LABEL has a font size of 24. It is declared separately.

    Your input text has nothing special declared, which means it 'inherits' the master value.

    Which is this:

    body {

    font-size: 1.4em; /* currently ems cause chrome bug misinterpreting rems on body element */

    line-height: 1.6;

    font-weight: 300;

    font-family: "Trebuchet MS", verdana, geneva, lucidia, arial, sans-serif;

    color: #333; }

    So you need to add some font-size (etc) declarations to the 'input' version.

0/9000