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

Change the position of upload icon

1 Answer 50 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Dona
Top achievements
Rank 1
Dona asked on 24 Oct 2013, 09:21 AM
Hi

During upload operation a blinking icon and a stable green icon is displayed on the left of the file name. How can I have the same on the right side of the filename? Is there any possible tweak?

Thankyou
Dona

1 Answer, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 24 Oct 2013, 11:09 AM
Hi Dona,

Please try the following CSS to change the upload icon position to the right side of the uploaded filename.

ASPX:
<telerik:RadAsyncUpload ID="RadAsyncUpload1" runat="server" dir="rtl">
</telerik:RadAsyncUpload>

CSS:
<style type="text/css">
    .RadUpload_Default .ruRemove
    {
        float: right !important;
    }
    .RadUpload_Default .ruBrowse
    {
        float: right !important;
    }
</style>

Thanks,
Shinu.
Tags
AsyncUpload
Asked by
Dona
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or