Hi all,
I cannot get the tabs to be the same width, even if I specify the width. Also, the tab control does not fill the strip until the browser is resized. Sadly I cannot provide screenshots but the tabs do not fill the entire strip as it leaves some of the strip bare.
UI:
<telerik:RadTabStrip runat="server" ID="rts" Width="100%" AutoPostBack="False"
Skin="Silk" MultiPageID="rmp" SelectedIndex="0"
CausesValidation="False" Align="Justify"
OnClientTabSelected="OnClientTabSelected" EnableAriaSupport="True" RenderMode="Classic">
<KeyboardNavigationSettings CommandKey="Alt" FocusKey="T" />
<Tabs>
<telerik:RadTab Text="Text" PageViewID="pv1" Value="pv1" Selected="True"></telerik:RadTab>
<telerik:RadTab Text="Some Text" PageViewID="pv2" Value="pv2"></telerik:RadTab>
<telerik:RadTab Text="Some More TextView" PageViewID="pv3" Value="pv3"></telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
CSS:
.RadTabStrip_Silk .rtsLevel1 .rtsLink,
.RadTabStrip_Silk .rtsLevel1 .rtsLink:hover,
.RadTabStrip_Silk .rtsLevel1 .rtsSelected:hover {
background-color: blue !important;
color: white !important;
background-image: none !important;
}
.RadTabStrip_Silk .rtsLevel1 .rtsSelected {
background-color: red !important;
color: white !important;
text-align: center;
background-image: none !important;
}
Thanks,