I have a font resize function on my page which increases the font size via javascript for the entire page.
This works fine in most browsers except IE. When decreasing the font size after increasing it, the select boxes new height does not decrease, even though the font size is decreasing on it. Instead the smaller font appears to be padded with white space.
Any ideas as to what IE is doing here, and a work around?
function setFontSize(newFontSize)
$('select').css("font-size", newFontSize);
}