T
Tony
I just wonder how do I style the text that is the actual node items.
I have created a web.sitemap that looks like this and further down is the
default.aspx.
As you can see I have an id on the asp:menu but I don't know how to style
the contents of the asp:menu
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode title="Home" description="Start page" url="Default.aspx" >
<siteMapNode title="About Us" description="About us" url="About.aspx"
/>
<siteMapNode title="Products" description="Our products"
url="Products.aspx" />
<siteMapNode title="Contact Us" description="Contact us"
url="Contact.aspx" />
</siteMapNode>
</siteMap>
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="default.aspx.cs"
Inherits="slask._default" %>
<!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" >
<head runat="server">
<title>Untitled Page</title>
<style type="text/css">
#menu
{
float:left;
margin-bottom:25px;
width: 350px;
height: 30px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="menu">
<asp:Menu ID="Menu1" runat="server"
DataSourceID="SiteMapDataSource1"
Orientation="Horizontal" SkipLinkText=""
StaticDisplayLevels="2">
</asp:Menu>
<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" />
</div>
</form>
</body>
</html>
//Tony
I have created a web.sitemap that looks like this and further down is the
default.aspx.
As you can see I have an id on the asp:menu but I don't know how to style
the contents of the asp:menu
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode title="Home" description="Start page" url="Default.aspx" >
<siteMapNode title="About Us" description="About us" url="About.aspx"
/>
<siteMapNode title="Products" description="Our products"
url="Products.aspx" />
<siteMapNode title="Contact Us" description="Contact us"
url="Contact.aspx" />
</siteMapNode>
</siteMap>
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="default.aspx.cs"
Inherits="slask._default" %>
<!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" >
<head runat="server">
<title>Untitled Page</title>
<style type="text/css">
#menu
{
float:left;
margin-bottom:25px;
width: 350px;
height: 30px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="menu">
<asp:Menu ID="Menu1" runat="server"
DataSourceID="SiteMapDataSource1"
Orientation="Horizontal" SkipLinkText=""
StaticDisplayLevels="2">
</asp:Menu>
<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" />
</div>
</form>
</body>
</html>
//Tony