Hi -
Is there a way to resolve the issue shown in the attached document. The RadUpload input area is missing its top border. I'm using the Web20 skin though I tried other skins and the same issue occurs.
Thanks.
Is there a way to resolve the issue shown in the attached document. The RadUpload input area is missing its top border. I'm using the Web20 skin though I tried other skins and the same issue occurs.
Thanks.
4 Answers, 1 is accepted
0
Hi Lynne,
Please excuse us for the inconvenience caused.
Hope this will be helpful. If you have further questions please don't hesitate to ask.
Kind regards,
Plamen Zdravkov
the Telerik team
Thank you for contacting Telerik support.
This is a known issue in RadUpload that is observed in some versions of IE that is fixed if you add this css style:
<style type=
"text/css"
>
.ruFileWrap
{
padding
:
1px
!important
;
}
</style>
Please excuse us for the inconvenience caused.
Hope this will be helpful. If you have further questions please don't hesitate to ask.
Kind regards,
Plamen Zdravkov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Lynne
Top achievements
Rank 1
answered on 19 Mar 2012, 04:01 PM
This fixed the problem with the border, but now the Select and Clear buttons are misaligned and are jammed together. There used to be nice spacing between the two buttons.
0
Accepted
Princy
Top achievements
Rank 2
answered on 20 Mar 2012, 11:57 AM
Hi Lynne,
Try the following css to provide spacing between Select and Clear buttons.
CSS:
Thanks,
Princy.
Try the following css to provide spacing between Select and Clear buttons.
CSS:
<style type=
"text/css"
>
.RadUpload .ruBrowse
{
margin-right
:
7px
!important
;
margin-top
:
-1px
!important
;
}
.ruFileWrap
{
padding
:
1px
!important
;
}
</style>
Thanks,
Princy.
0
Lynne
Top achievements
Rank 1
answered on 22 Mar 2012, 03:26 PM
This resolved the issue. Thanks!