Hi,
I've been using the CSS Control Adapters with an ASP Menu which is set to display static - all menu items and levels displayed. However the menu is currently displaying like a dynamic menu with only the root item displayed in the menu. Can the CSS Control Adapters be used with static menus (if so what am I doing wrong?) or do I need to disable them. Would really like to use the adapters as I prefer to be css driven rather than using tables. I have pasted in my master page code for reference. Can anyone help please?
Cheers
Andrew
FireTest.Master
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="FireTest.master.cs" Inherits="FireTest" Debug="true" EnableTheming="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
<head runat="server">
<title>- Protective Coatings - Database</title>
<link href="App_Themes/mpyapftdb_Base/mpyapftdb_style.css" rel="stylesheet" type="text/css" />
<link href="http://www.international.intra/style/MPC_STYLE.css" type="text/css" rel="StyleSheet" />
<!--[if lt IE 7]>
<link runat="server" rel="stylesheet" href="~/BrowserSpecificCSS/IEMenu6.css" type="text/css" ID="IEMenu6CSS" />
<![endif]-->
<!--[if gt IE 6]>
<link runat="server" rel="stylesheet" href="~/BrowserSpecificCSS/IEMenu7.css" type="text/css" ID="IEMenu7CSS" />
<![endif]-->
</head>
<body style="height:100;">
<form id="form1" runat="server" method="post" enctype="multipart/form-data">
<div id="HeaderNav">
<div id="HeaderLogo">
<img src="App_Themes/mpyapftdb_Base/coatings.gif" alt="International Paint Ltd - All Propellor and International Logos are Registered Trademarks"/>
</div>
<div id="BusinessUnitLogo">
<img src="App_Themes/mpyapftdb_Base/bg_wave.gif" alt=""/>
</div>
</div>
<div id="LeftNavContainer">
<div id="LeftNav">
<p>
<asp:Menu ID="Menu1" runat="server" DataSourceID="smdsSiteMap" DisappearAfter="0"
StaticDisplayLevels="10">
</asp:Menu>
<asp:SiteMapDataSource ID="smdsSiteMap" runat="server" />
</p>
</div>
<div id="LeftNavBase">
</div>
</div>
<div id="PageContainer">
<div>
<asp:SiteMapPath ID="smpCurrentPosition" runat="server" CssClass="content"></asp:SiteMapPath>
<asp:contentplaceholder id="Main" runat="server">
</asp:contentplaceholder>
</div>
</div>
</form>
</body>
</html>