Thanks for replying to my post.
I have been looking at the styles you listed in the link you provided and I think I got more confused, so I apologize for my novice questions.
I see there is the class 'FooterMenu', but how is that class created and attached to the menu control? I tried adding CssClass = "FooterMenu", but when the page rendered it didn't show up. So, I am missing something.
My attempt was placing the menu control in a div
<
div id="footer"><asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1"
Orientation="Horizontal">
</asp:Menu>
<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" ShowStartingNode="False" />
</div>
and applying the styles to my footer id:
/*
#footer {padding:0px;width:100%;clear:both;text-align:center;font-size:1.1em; text-transform: uppercase; font-weight: bold;}
#footer a:link, #footer a:visited, #footer a:hover, #footer a:active {color: #38B8D1; text-decoration: none;}
#footer ul {margin: 0px; padding:0px;}
#footer li {list-style-type: none; white-space: nowrap; float: left; padding: 0px 5px 0px 5px; margin: 0px;}
*/
Thanks again for your help. I appreciate it.