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
Menu items numbered? 2.3 2.4 2.5?
Re: Menu items numbered? 2.3 2.4 2.5?
Put this part of the "Accessibility and cross-browser tools" stylesheet to your stylesheet.
Ronny
Or attach that default stylesheet to your template. You will get the other accessibility-stylings then as well./* 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;
}
Ronny