You are not authorized to post a reply.
|
Prev Next
|
| Author |
Messages |
|
Simon
Posts:1
 |
| 01/29/2007 8:59 AM |
Alert
|
I have created a XHTML CCS menus and I'm trying to convert it to the SEO v3 menu. I've had a look at the documentation, but can't see what I'm doing wrong or not adding. My original HTML that i'm trying to re-produce looks like this: <div id="menu"> <ul id="main_menu"> <li class="current bg_home"><a href="#home">Home</a> <div class="menu_arrow bg_home"> </div> </li> <li><a href="#about">About Amey</a> <div class="menu_arrow"> </div> </li> <li><a href="#services">Our Services</a> <div class="menu_arrow"> </div> </li> </ul> </div> My code looks like this: <dnn:SEOMENU runat="server" id="dnnSEOMENU" ShowAdmin="False" MenuPropName="menu" MenuType="id"> and the following html is produced in DNN: <div id="menu"> <ul id="menu0"> <li id="36"><a href="http://localhost/dotnetnuke/441s/website">Home<!--[if IE 7]><!--></a><!--<![endif]--><table><tr><td></td></tr></table><!--[if lte IE 6]></a><![endif]--></li> <li id="53"><a href="http://localhost/dotnetnuke/441s/website/Article/tabid/53/Default.aspx">Article<!--[if IE 7]><!--></a><!--<![endif]--><table><tr><td></td></tr></table><!--[if lte IE 6]></a><![endif]--></li> </ul> </div> Question: 1) Which internal features to I need to add to change <ul id="menu0"> TO <ul id="main_menu">? 2) Which internal features to I need to add to specify a different style for the users selected page? 3) How go I remove the html table tags, as I want this menu to be totally driven by the CSS? Many thanks for you assistance. simon |
|
|
|
|
DNN SEO
Posts:153
 |
| 01/30/2007 5:52 PM |
Alert
|
| well for the div between the links to show you would need ShowSeparator="True" Separator="" |
|
Owner/Developer DNN SEO www.dnnseo.net |
|
|
|
| You are not authorized to post a reply. |
|
|
|