I'm currently working on a Web Forms application that involves the use of a Telerik RadUpload control for managing file uploads. The default appearance of the RadUpload control is shown below:
https://i.sstatic.net/h8XaN.png
However, I am looking to have the browse button appear on the next line from the file upload textbox with an additional button beside it, similar to the image below:
https://i.sstatic.net/YIEmm.png
I'm unsure how to go about achieving this. Would I need to use CSS to define the layout? If so, how do I target this specific control? Alternatively, does WebForms offer its own method for controlling layouts (my experience with WebForms is limited)?
<telerik:RadUpload ID="tstUpload" runat="server" InitialFileInputsCount="1" MaxFileInputsCount="1" ControlObjectsVisibility="None" OverwriteExistingFiles="True"
EnableFileInputSkinning="true">
<Localization Select="<%$ Resources:Side,Test %>" />
</telerik:RadUpload>
Thank you in advance for your assistance!