
Madhu Palakurthi
Top achievements
Rank 1
Madhu Palakurthi
asked on 30 Jan 2013, 04:57 AM
Hi,
i use RadTab with Metro skin. RadTab shows starting letter in lower case.
How can i change starting letter lower case to upper case?
For Example: - product detail
i want to show:- Product Detail
Thanks In Advance ....
i use RadTab with Metro skin. RadTab shows starting letter in lower case.
How can i change starting letter lower case to upper case?
For Example: - product detail
i want to show:- Product Detail
Thanks In Advance ....
4 Answers, 1 is accepted
0

Shinu
Top achievements
Rank 2
answered on 30 Jan 2013, 12:59 PM
Hi Narsa
Please add the following CSS as a workaround.Hope this helps.
CSS
Thanks
Shinu.
Please add the following CSS as a workaround.Hope this helps.
CSS
<style type=
"text/css"
>
.RadMenu_Metro .rmLink .rmText
{
text-transform
:
none
!important
;
}
</style>
Thanks
Shinu.
0

Madhu Palakurthi
Top achievements
Rank 1
answered on 31 Jan 2013, 01:56 AM
Thank you for reply.
Still it's not working ..
Code :
.RadMenu_Metro .rmLink .rmText
{
text-transform: none !important;
}
<telerik:RadTabStrip runat="server" ID="RadTabStrip1" Skin="Metro" Orientation="HorizontalTop"
SelectedIndex="0" MultiPageID="RadMultiPage1">

Still it's not working ..
Code :
.RadMenu_Metro .rmLink .rmText
{
text-transform: none !important;
}
<telerik:RadTabStrip runat="server" ID="RadTabStrip1" Skin="Metro" Orientation="HorizontalTop"
SelectedIndex="0" MultiPageID="RadMultiPage1">
0
Accepted

Shinu
Top achievements
Rank 2
answered on 31 Jan 2013, 09:11 AM
Hi,
I apologize for giving CSS for the Metro skin RadMenu instead of RadTabStrip. Please try the following CSS.
CSS:
Thanks,
Shinu.
I apologize for giving CSS for the Metro skin RadMenu instead of RadTabStrip. Please try the following CSS.
CSS:
<style type=
"text/css"
>
.RadTabStrip_Metro .rtsLevel .rtsTxt
{
text-transform
:
none
!important
;
}
</style>
Thanks,
Shinu.
0

Madhu Palakurthi
Top achievements
Rank 1
answered on 31 Jan 2013, 09:44 AM
Thank you.. Now its working fine..