Page 1 of 1

Menu items numbered? 2.3 2.4 2.5?

Posted: Thu Jun 03, 2010 1:09 am
by rovercar
Anyone know how to get rid of the number and leave just the label? What do I edit?

Specifically, I'm working with the "Green" template from http://themes.cmsmadesimple.org

Just point me in the right direction, please.

Thanks

Re: Menu items numbered? 2.3 2.4 2.5?

Posted: Thu Jun 03, 2010 5:04 am
by RonnyK
Put this part of the "Accessibility and cross-browser tools" stylesheet to your stylesheet.
/* definition tags are also hidden, these are also used for accessibility menu links */
dfn {
position: absolute;
left: -1000px;
top: -1000px;
width: 0;
height: 0;
overflow: hidden;
display: inline;
}
Or attach that default stylesheet to your template. You will get the other accessibility-stylings then as well.

Ronny