This is already in your style sheet...
Once I know where this bit of code lives I can remove the numbering with:
list-style-type: none;
it makes the 'bullets', square, round, diamond, not show... remember the dots next to the menu before it went horiz., attached img. prev. post...
This is what the source looks like for the numbered menu text...
Current page is 1:
Home
2: How CMSMS Works
so the CSS that I posted will make the
2: move off the page, since it has
position: absolute; to the left
left: -1000px; above the top
top: -1000px;...
I've attached image that shows the Default 'Accessibility and cross-browser tools' style sheet with the 'dfn{' call...
I made a copy of the menu template, in Layout » Menu Manager, 'cssmenu.tpl' called it 'show' in the 'pages' template it's...
Navigation
{menu template='show'}
in the new menu template 'show' I put numbers 1...9
{* CSS classes used in this template:
#menuwrapper - The id for the that the menu is wrapped in. Sets the width, background etc. for the menu.
#primary-nav - The id for the
.menuparent - The class for each that has children.
.menuactive - The class for each that is active or is a parent (on any level) of a child that is active. *}
{if $count > 0}
{foreach from=$nodelist item=node}
{if $node->depth > $node->prevdepth}
{repeat string="" times=$node->depth-$node->prevdepth}
{elseif $node->depth prevdepth}
{repeat string="" times=$node->prevdepth-$node->depth}
1
{elseif $node->index > 0}2
{/if}
{if $node->parent == true or ($node->current == true and $node->haschildren == true)}
3current == true}
4haschildren == true}
5type == 'sectionheader'}
6 {$node->menutext}
{elseif $node->type == 'separator'}
7
{else}
8type != 'sectionheader' and $node->type != 'separator'}
href="{$node->url}" {if $node->accesskey != ''}accesskey="{$node->accesskey}" {/if}{if $node->tabindex != ''}tabindex="{$node->tabindex}" {/if}{if $node->titleattribute != ''}title="{$node->titleattribute}"{/if}{if $node->target ne ""} target="{$node->target}"{/if}>{$node->hierarchy}: {$node->menutext}
{elseif $node->type == 'sectionheader'}
>{$node->hierarchy}: {$node->menutext}
{/if}
{/foreach}
{repeat string="" times=$node->depth-1} 9
{/if}
the source looks like this....
81: Home
2
52: How CMSMS Works
82.1: Templates and stylesheets
2
82.2: Extensions
2
82.3: Events Manager
2
82.4: Workflow
2
82.5: Where do I get help?
2
82.6: Content
2
82.7: Pages and navigation
2
82.8: Menu Manager
1
33: Default Templates Explained
83.1: CMSMS tags in the templates
2
83.2: Left simple navigation + 1 column
2
83.3: Top simple navigation + left subnavigation + 1 column
2
43.4: CSSMenu top + 2 columns
2
83.5: CSSMenu left + 1 column
2
83.6: Minimal template
1
54: Default Extensions
54.1: Modules
84.1.1: News1
2
84.1.2: Menu Manager
2
84.1.3: Theme Manager
2
84.1.4: FCKEditorX
2
84.1.5: Search
2
84.1.6: Module Manager
1
54.2: Tags
84.2.1: Tags in the core
2
84.2.2: User-defined tags
1
85: Embeded
2
86: Golf
9
from this output I get an idea of where to put my "|" in the menu template at first glance 8 looks like a good place but the first one will have | in front so maybe 2 that will put it in front of all the 8's but the first one but then 3 and 5 will need them and so on...
[gelöscht durch Administrator]