Can anyone explain me how to apply css styles to form_dropdown function in codeigniter ? I would like the form to look like
<select name="dropdown" style="width: 240px; font-size: 13px">
....
</select
Aside from the fact it'd be best to define the styles via an external stylesheet rather than inline, you can do it as follows:
form_dropdown('dropdown', $options, $selected, 'style="width: 240px; font-size: 13px"');
You could just as easily add a class to the <select>
and then add the styles in your stylesheet:
form_dropdown('dropdown', $options, $selected, 'class="foo"');
In either case, if you don't have a value for $selected
, set it to array()
form_dropdown('dropdown', $options, array(), 'style="width: 240px; font-size: 13px"');
Although you could get away setting it to null
or ''
for convenience.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With