When using IE9, my drop down list only displays part of the text. For example, if I select "Hello World", it only shows "Hello".
I tried disabling the CSS and discovered that the issue is caused by the following code:
.ui-widget { font-family: Verdana; font-size: 1.1em; } .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana; font-size: 1em; }
Disabling the 'font-family: Verdana' or reducing the font size allows the full text to display. However, I am hesitant to make changes to the core CSS file due to potential impacts on other areas. Any suggestions for a workaround? Thank you.