Page 1 of 1

Horizontal CSS Menu: How can I keep numbers from showing

Posted: Wed Jun 07, 2006 4:24 pm
by 18thTomorrow
Hi,

in this site :  http://mapleview.awardspace.com

how can I keep the numbers (1.1 2.1, 2.2, etc) appearing in the navigation bar, so it's just the titles instead?

Thanks

Re: Horizontal CSS Menu: How can I keep numbers from showing

Posted: Wed Jun 07, 2006 4:28 pm
by tsw
those dfn tags are for accessibility

from default css template:

Code: Select all

dfn {
  position: absolute;
  left: -1000px;
  top: -1000px;
  width: 0;
  height: 0;
  overflow: hidden;
  display: inline;
}