You are viewing limited content. For full access, please sign in.

Question

Question

How do I reduce font size for drown down fields in Forms?

asked on November 7, 2018

When I use this code:

body {font-size:100%;}
input {font-size:90%;}

in the CSS, my field names and input font size decreases. However, the values in my drop down fields remain the same. Can someone please help e out with the CSS to reduce the drop down text font size? I am certainly open to other methods of ding it as well.

Thanks,

Mike

0 0

Answer

SELECTED ANSWER
replied on November 7, 2018

Hi Mike,

Dropdowns would be a "select" type instead of "input" type. To cover all the common field types, you'd want to use the following:

input,select,textarea {
    font-size:90%;
}

 

2 0
replied on May 20

Hello,

 

The CSS code worked when completing the form. However, the font size is still small when it is in pdf format. Any suggestion?

0 0

Replies

replied on November 7, 2018

Thank you very much. That is extremely helpful.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.