I have a very strange display issue. In a nutshell, the "Choose File" button is really messed up. (Nice tech jargon :). A screenshot is easier to explain (It's a little small, but you can see the "Choose File" text WAY to the right - and that large gray area IS THE BUTTON):
![Image]()
I have narrowed it down to the Select / Choose File button command.
I viewed the NBStore demo site, and viewed source. The demo site shows this:
DNN version 07.01.00
NB_Store v2.3.8 Rel3
I've been staring at the all of the acsx files (AdminProduct, AdminProductDetail, AdminProductImage, AdminProductDoc) and can't seem to find out why/where the discrepancies are to fix the issue.

I have narrowed it down to the Select / Choose File button command.
I viewed the NBStore demo site, and viewed source. The demo site shows this:
<div class="NBright_ButtonDiv">
<input type="file" name="dnn$ctr452$AdminProduct$productimage$cmdBrowse" id="dnn_ctr452_AdminProduct_productimage_cmdBrowse" />
<a id="dnn_ctr452_AdminProduct_productimage_cmdAddImage" title="Add" class="dnnSecondaryAction NBright_AddButton" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("dnn$ctr452$AdminProduct$productimage$cmdAddImage", "", true, "", "", false, true))">Add</a>
</div>
and MY site shows this:<div class="NBright_ButtonDiv">
<span id="dnn_ctr454_AdminProduct_productimage_lblBrowse">Select</span>
<input type="file" name="dnn$ctr454$AdminProduct$productimage$cmdBrowse" id="dnn_ctr454_AdminProduct_productimage_cmdBrowse" />
<a id="dnn_ctr454_AdminProduct_productimage_cmdAddImage" title="Add" class="NBright_AddButton" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("dnn$ctr454$AdminProduct$productimage$cmdAddImage", "", true, "", "", false, true))">Add</a>
</div>
My site has a <span id="dnn_ctr454_AdminProduct_productimage_lblBrowse">Select</span> and does NOT have dnnSecondaryAction as part of the button class.DNN version 07.01.00
NB_Store v2.3.8 Rel3
I've been staring at the all of the acsx files (AdminProduct, AdminProductDetail, AdminProductImage, AdminProductDoc) and can't seem to find out why/where the discrepancies are to fix the issue.