This is a migrated thread and some comments may be shown as answers.

Need to customize the appearance of RadUpload

1 Answer 68 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Lee
Top achievements
Rank 1
Lee asked on 03 Aug 2012, 08:56 PM
Hi!

I'm trying to use a very simple RadUpload control:

<telerik:RadUpload ID="LogoFileUpload" MaxFileInputsCount="1" ControlObjectsVisibility="None"
                            Skin="Web20" runat="server" />

Now I want increase the width of the text area and also the "Select" button.  How can I do this?

Thanks!

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 06 Aug 2012, 04:26 AM
Hi Lee,

Try overriding the default css as follows to achieve your scenario.

CSS:
<style type="text/css">
.ruFakeInput
{
 width: 350px !important;  
}
 
.RadUpload .ruBrowse
{
 background-position: 0 -45px !important;
 width: 115px !important;
}
</style>

Hope this helps.

Thanks,
Princy.
Tags
General Discussions
Asked by
Lee
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or