I have a webtab as follows:
<ig:WebTab ID="WebTab1" runat="server" VisibleHeader="False" Height="100%"
TabsOverflow="KeepSize" Font-Size="Small" SelectedIndex="0"
BorderStyle="None" BorderColor="White" BorderWidth="0px" >
Even setting the border options above, the border still appears. How do I remove the border?
Hi,first of all, sorry for the late answer. You can remove the border of the tab content holder by including the following style class in your page: .igtab_THContentHolder { border: none; }Regards,Nikolai Dimitrov
Also, remember if you are using application styling...it uses a different set of style sheets. So for me my style class modification was:
.igtab_PearTHContentHolder
{
border: none;}