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

How do I change font size?

4 Answers 166 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
FISCAL
Top achievements
Rank 1
FISCAL asked on 21 Sep 2011, 04:23 PM
Hi,

Could anyone tell me how can I change the  font size of the "remove" button that gets displayed after you select a file to upload in "AsyncUpload" control? Changing "Font-size" only changes the font size of the filename to be uploaded but not the "remove" button.

<telerik:RadAsyncUpload ID="importFileUpload" runat="server" Localization-Select="Browse" InputSize="50" MaxFileInputsCount="1" Font-Size="12pt">    
</telerik:RadAsyncUpload>


Many thanks.

MG

4 Answers, 1 is accepted

Sort by
0
Jayesh Goyani
Top achievements
Rank 2
answered on 22 Sep 2011, 06:11 AM
Hello,

Please add below style in your page.

.RadUpload .ruRemove
{
font-size:15px !important;
}

let me know if any concern.

Thanks,
Jayesh Goyani


0
Shinu
Top achievements
Rank 2
answered on 22 Sep 2011, 06:16 AM
Hello Milan,

her overriding the default CSS like below.
CSS:
.RadUpload_<skinName> .ruRemove
       {
           font-size:larger !important;
       }

Thanks,
Shinu.
0
FISCAL
Top achievements
Rank 1
answered on 25 Oct 2011, 04:57 PM
Hi Jayesh & Shinu,

Thanks for the reply. How about the "Cancel" button? I tried .ruCancel but it seems to be not working.

Cheers,
Milan Gurung
0
Dimitar Terziev
Telerik team
answered on 28 Oct 2011, 10:56 AM
Hi Milan,

You should be able to set font size both for the remove and cancel button as shown below:
<style type="text/css">
         
        .ruCancel
        {
            font-size:12px !important;
        }
         
        .ruRemove
        {
            font-size:12px !important;
        }
         
    </style>

Greetings,
Dimitar Terziev
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
Tags
AsyncUpload
Asked by
FISCAL
Top achievements
Rank 1
Answers by
Jayesh Goyani
Top achievements
Rank 2
Shinu
Top achievements
Rank 2
FISCAL
Top achievements
Rank 1
Dimitar Terziev
Telerik team
Share this question
or