How do I style the item in a asp:menu

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top