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

[Solved] RadUpload "Add" button

2 Answers 168 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
reethish
Top achievements
Rank 1
reethish asked on 07 Nov 2008, 09:01 PM
Hi,

I want to configure(minimize) the width of the "Add" button in the RadUpload control, please let me know how this can be done.

Thanks,
Reethish

2 Answers, 1 is accepted

Sort by
0
Matt
Top achievements
Rank 1
answered on 13 May 2009, 11:43 PM
I am having the same issue.

I tried this based on the documentation:

.RadUpload_Office2007 .ruAdd { width:200px; } 

It doesn't seem to be working. I am using the "Office2007" skin.

Thanks,

Matt
0
Paul
Telerik team
answered on 14 May 2009, 02:06 PM
Hi Matt,

Please find below a sample code snippet that whows the needed approach.

<html xmlns="http://www.w3.org/1999/xhtml">  
<head runat="server">  
    <title></title>  
    <style type="text/css">  
        .RadUpload .ruActions .ruButton,  
        .RadUploadProgressArea .ruActions .ruButton  
        {  
            width: 40px !important;  
        }  
    </style> 
</head> 
<body> 
    <form id="form1" runat="server">  
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1">  
    </telerik:RadScriptManager> 
    <telerik:RadUpload ID="RadUpload1" runat="server" Skin="Office2007">  
    </telerik:RadUpload> 
    </form> 
</body> 
</html> 


Regards,
Paul
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Upload (Obsolete)
Asked by
reethish
Top achievements
Rank 1
Answers by
Matt
Top achievements
Rank 1
Paul
Telerik team
Share this question
or