I'm one step closer to getting this done...I found the line of code that brings up the Access Rights box:
Code: Select all
<field name="accessuserid" type="phocausers" multiple="1" label="COM_PHOCADOWNLOAD_FIELD_ACCESS_RIGHTS_LABEL" description="COM_PHOCADOWNLOAD_FIELD_ACCESS_RIGHTS_DESC" class="inputbox" size="1" />
...but changing the size from "1" to any other number (I even tried double digits) doesn't change the height. This problem also exists for the upload and delete user boxes. I even removed the size parameter entirely, and nothing changed. Then I added a "height" parameter, just to see what would happen...no change there either.
Conversely, when I up the size on the Access box code below (which displays Public, Registered, Special) that DOES increase it's size. I'm stumped...
Code: Select all
<field name="access" type="accesslevel" label="JFIELD_ACCESS_LABEL" description="JFIELD_ACCESS_DESC" class="inputbox" size="1" />
Is there something somewhere that's globally restricting the size to the Access/Upload/Delete rights dropdown boxes?