# Css to increase font size in drop down list

**URL:** https://forums.knack.com/t/css-to-increase-font-size-in-drop-down-list/17850
**Category:** Get Answers
**Created:** [September 6, 2024, 8:39am UTC](https://forums.knack.com/t/css-to-increase-font-size-in-drop-down-list/17850 "2024-09-06T08:39:20Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![NeilParkin60970](https://avatars.discourse-cdn.com/v4/letter/n/47e85d/32.png) [@NeilParkin60970](https://forums.knack.com/u/NeilParkin60970)
#### Post date: [September 6, 2024, 8:39am UTC](https://forums.knack.com/t/css-to-increase-font-size-in-drop-down-list/17850/1 "2024-09-06T08:39:20Z")

</div>

Hi All,

hoping this is a simple one.

I have a screen which because of viewing it at a workstation up to a few feet away. I want to control the size of the font in a drop down single selection list. I need to make it bigger.

I have used my normal schoolboy css, identify view, then tag it with font-size, which works on everything else I’ve done, but it doesn’t work on this. I’m guessing as the drop down works like an indexed array, i’m going to need something else in there to help identify it. Anyone tell me what it is…?

Appreciate the help.

Neil

---

<div class="post-metadata">

### Author: ![CSWinnall](https://sea2.discourse-cdn.com/flex020/user_avatar/forums.knack.com/cswinnall/32/3631_2.png) [@CSWinnall](https://forums.knack.com/u/CSWinnall)
#### Post date: [September 16, 2024, 6:44am UTC](https://forums.knack.com/t/css-to-increase-font-size-in-drop-down-list/17850/2 "2024-09-16T06:44:31Z")

</div>

Hi @NeilParkin60970

Try this you need to replace the view and the field IDs but it should work:

```auto
#view_335-field_522 > option {
    font-size: 20px;
}

```

Adjust the font-size to what you need.  
Craig

---

<div class="post-metadata">

### Author: ![NeilParkin60970](https://avatars.discourse-cdn.com/v4/letter/n/47e85d/32.png) [@NeilParkin60970](https://forums.knack.com/u/NeilParkin60970)
#### Post date: [September 16, 2024, 7:40am UTC](https://forums.knack.com/t/css-to-increase-font-size-in-drop-down-list/17850/3 "2024-09-16T07:40:43Z")

</div>

Hi Craig,

thank you so much for this. Its a small thing, but it will have a big effect on our app.

Kind regards

Neil
