
Meik Napierski
Top achievements
Rank 1
Meik Napierski
asked on 15 Apr 2010, 05:26 PM
Hello,
how can i change the font / size of the current file? With the CSS selector .ruCurrentFile i can only set background-color etc but not the font or the size of the font.
with best regards
Meik Napierski
how can i change the font / size of the current file? With the CSS selector .ruCurrentFile i can only set background-color etc but not the font or the size of the font.
with best regards
Meik Napierski
4 Answers, 1 is accepted
0
Hi Meik Napierski,
To override that element please use the following CSS selector:
Hope this helps.
Kind regards,
Veskoni
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
To override that element please use the following CSS selector:
div.RadUploadProgressArea .ruProgress li.ruCurrentFile {
font-size
:
16px
;
}
Hope this helps.
Kind regards,
Veskoni
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

Meik Napierski
Top achievements
Rank 1
answered on 19 Apr 2010, 01:42 PM
Hello,
sorry that doesnt work. The string currentFile will be adjust by this setting but the value (the name of the uploaded file) will be displayes in its own font size and this font size i must adjust.
with best regards
Meik Napierski
sorry that doesnt work. The string currentFile will be adjust by this setting but the value (the name of the uploaded file) will be displayes in its own font size and this font size i must adjust.
with best regards
Meik Napierski
0
Hi Meik Napierski,
In this case this is the correct CSS selector:
All the best,
Veskoni
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
In this case this is the correct CSS selector:
div.RadUploadProgressArea .ruProgress li.ruCurrentFile span {
font-size
:
12px
;
}
All the best,
Veskoni
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

Meik Napierski
Top achievements
Rank 1
answered on 22 Apr 2010, 09:40 AM
Hello,
thanks with the additional selector span it works :)
Greetings Meik
thanks with the additional selector span it works :)
Greetings Meik