Using font tag you can reduce for particular options .
In html editor add tad as below
`<font size="6">This is some text!</font>`
@bansalpeeyush29 Thanks! Does this require the [Custom HTML interface] (https://www.qualtrics.com/support/website-app-feedback/creatives-tab/creative-types/custom-html-creative/ "Custom HTML interface") or can it be implemented through the default interface?
@JIR,
You need to change the font size of the input boxes. You can do all inputs in the matrix by adding something like this to your question text:
```
<style>#QID1 input[type=text] { font-size: smaller; } </style>
```
The #QID1 makes it specific to the question (you have to lookup the specific QID). If it is the only question on the page you can just remove the QID.
"smaller" makes the font smaller relative to the default font. You could use any absolute or relative font size you want (12px, 0.8em, etc.).
To change the size of inputs in specific cells, I think you'll have to use JavaScript.
@TomG This works great!
Thank you both for your help!