Horizontal CSS Menu: How can I keep numbers from showing

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Locked
18thTomorrow

Horizontal CSS Menu: How can I keep numbers from showing

Post 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
tsw
Power Poster
Power Poster
Posts: 1408
Joined: Tue Dec 13, 2005 10:50 pm

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

Post 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;
}
Locked

Return to “Layout and Design (CSS & HTML)”