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

I need smaller tab

2 Answers 40 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Filleau
Top achievements
Rank 1
Filleau asked on 02 Apr 2009, 12:50 PM
Hi,

I use Q2009. On my form, I have a TadStrip with tab letters (A to Z)


Since Q2009 the vista (& others) skin tab seems to be larger than Q2008

Because I don't know CSS and how to modify it. (I tryed to edit skins\vista\tabstrip.vista.css without any success)
Can you tell me a sympli way to reduce the width of the tab.

I think there is to way to do it
- With a smaller font
- By deleting the rigth and left padding (if there is padding)
- may be another one ?

How to do this ? and where ?

Thanks

2 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 03 Apr 2009, 06:48 AM
Hello Filleau,

You can set the required styles in the css class for the tabstrip as shown below:
aspx:
<telerik:RadTabStrip CssClass="TabStrip" ID="RadTabStrip1" runat="server"
 ..... 
</telerik:RadTabStrip>      

css:
 <style type="text/css"
    .TabStrip .rtsIn 
     { 
        padding-left:0px !important; 
        padding-right:0px !important; 
        font-size:smaller !important; 
     } 
 </style> 

Thanks
Princy.
0
Filleau
Top achievements
Rank 1
answered on 03 Apr 2009, 10:49 AM
GREAT !

Thanks
Tags
TabStrip
Asked by
Filleau
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Filleau
Top achievements
Rank 1
Share this question
or