Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
210
Styles Not reflecting in the Tabs
posted

I have applied styles and fonts manually to the Ultra WebTab like below:

<igtab:UltraWebTab ID="UltraWebTab1" runat="server" BorderColor="#0056D7" BorderStyle="none" BorderWidth="0px" Section508Compliant="true" Height="100%" Width="100%" BackColor="White" AutoPostBack="True" OnTabClick="UltraWebTab1_TabClick" BarHeight="0" SpaceOnLeft="78" >

<BorderDetails StyleBottom="None" StyleLeft="Solid" StyleRight="None" StyleTop="Solid" />

<RoundedImage FillStyle="LeftMergedWithCenter" HoverImage="~/App_Themes/DefaultTheme/Images/tab_hover.gif"

LeftSideWidth="10" NormalImage="App_Themes/DefaultTheme/Images/tab_off.gif" RightSideWidth="10"

SelectedImage="App_Themes/DefaultTheme/Images/tab_on.gif" DisabledImage="App_Themes/DefaultTheme/Images/spacer.gif" />

 

<HoverTabStyle Font-Bold="True" Font-Size="10px" ForeColor="#003399">

</HoverTabStyle>

<DefaultTabStyle Font-Bold="True" Font-Size="10px" ForeColor="#003399">

<Padding Bottom="3px" Top="4px" />

</DefaultTabStyle>

<Tabs>

<igtab:Tab Text="Search" >

</igtab:Tab>

</Tabs>

 

 

</igtab:UltraWebTab>

 

But the same is not reflecting in the page while executing. When checked the Page Source, it is giving the path as

.ct100_MainContent_UltraWebTab1_0{font-size:10px;font_weight:bold;color:#003399;padding:4px 0 3px 10px; cursor:pointer;background:url(/aspnet_client/system_web/2-0_50727/ig_common/images/App_Themes/DefaultTheme/Images/tab_off.gif) no-repeat left top:}

I'm not sure from where it is picking the path /aspnet_client/system_web/2-0_50727/ig_common/images/. There is a folder like this in C:\Inetpub\wwwroot. but there is no folder called App_Themes/DefaultTheme/Images/tab_off.gif. This folder is in project directory.  For every image, the application has done similar path as above.  Could anybody please help ?

Thanks