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
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?
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.