innonet
Posts: 55
|
| Posted: 11/30/2011, 8:04 PM |
|
I am trying to add a Tabbed View with Tabs to an ASP.net C# Inmotion Page. So far it works great in all browsers.
I have yet the following questions:
a) Can someone tell me where the CSS Portion (see below) for the tabbed view is retrieved from. I checked the mttabbedview.css in the C# Inmotion Library and even modified and removed it completely. Yet every time I create a new page the same CSS code is created when I publish the page:
/*<!--*/
.mttabbedview_style .tab_active {
background: url(<%=ResolveClientUrl("~/Styles/TrackMyTrails/Images/MenuActiveBg.gif")%>) repeat-x;
margin-right: 4px; padding: 4px 10px 1px 10px;
text-align: center; font-weight: bold; color: White; cursor: auto;
background-color: #cccccc; border: 0;
}
.mttabbedview_style .tab {
background: url(<%=ResolveClientUrl("~/Styles/TrackMyTrails/Images/MenuBg.gif")%>) repeat-x;
margin-right: 4px; padding: 4px 10px 1px 10px;
text-align: center; font-weight:bold; color: Silver; cursor: pointer;
background-color: #ececec; border: 0;
}
.mttabbedview_style .tab_over {
background: url(<%=ResolveClientUrl("~/Styles/TrackMyTrails/Images/MenuActiveBg.gif")%>) repeat-x;
margin-right: 4px; padding: 4px 10px 1px 10px;
text-align: center; font-weight: bold; color: Black; cursor: pointer;
background-color: #cccccc; border: 0;
}
.mttabbedview_style .tab_body {
padding: 8px; border: 1px solid #777777;
background-color: #f7f7f7;
}
/*-->*/
b) If I add <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> to the top of my page to view the jquery slide show, the tabs work in all browsers but IE9. In IE9 the active button simply disappears. Any idea on how to resolve that ???
Thank you for all your input.
|
 |
 |
|