0

How do I increase the font size in collection_select dropdown box for a rails app?

I imagine this could be up with CSS.

paulywill
  • 629
  • 10
  • 29

1 Answers1

2

The collection_select method allows you to specify an html options, such as an html class name, e.g.:

collection_select(:user, :title, UserTitle.all, :id, :name, {:prompt=>true}, {:class=>'my-custom-class'})

Then, you can style it with CSS:

.my-custom-class { font-size: 110%; }
Community
  • 1
  • 1
Emmett
  • 14,035
  • 12
  • 56
  • 81