It is just me, or using CSS to specify the width of a SELECT element does not take effect (in IE at least)?
The only way I can get the width to apply is to set it like:
<select id="pageSizes" name="size" style="width: 45px">
My CSS is:
#pageSizes
{
width: 45px
}
<select id="pageSizes" name="size" style="width: 45px">you're missing the semicolon in the style after 45px. Should look like<select id="pageSizes" name="size" style="width: 45px;">