I wanted to resize the the text in option, but not all the text. The following will is my code.
<select>
<?php foreach($dataholder as $key=>$value): ?>
<option value='<?php echo $value; ?>' ><?php echo $key; ?> <small>(Max: <?php echo $max[$value]; ?>)</small> </option>
<?php endforeach; ?>
</select>
I wanted the resize or apply style for the text that containing in the .
Below is my original html copy from the browser.
<select class="select form-control col-md-4" id="renewal_period_flag" name="renewal_period_flag" style="width:320px !important;height:32px;">
<option value="1">Weekly (Max: RM6.00) </option> <option value="2">Monthly (Max: RM6.00) </option>
</select>