I am trying to create a file upload field within a transparent div sized at 150px x 150px. The goal is for the file dialog box to pop up when any part of the div is clicked, allowing the user to select a file for upload. Despite my attempts, I haven't been able to adjust the height and width successfully. How can I solve this issue?
<div id="adds" align="center" style="cursor:pointer; cursor:hand;">
<h1 style="margin-top:45px;">
<span>Select<br />photo</span>
<input type="file" name="upper" id="upper" width="150" height="150" />
</h1>
</div>
</div>