Getting rid of the numbers

General project discussion. NOT for help questions.
Post Reply
Darren-H
Forum Members
Forum Members
Posts: 12
Joined: Mon Sep 25, 2006 6:41 pm

Getting rid of the numbers

Post by Darren-H »

Hi

How do I get rid of the 1.1, 2, 2.1 etc in the navigation links.

cheers
Darren
nils73
Power Poster
Power Poster
Posts: 520
Joined: Wed Sep 08, 2004 3:32 pm

Re: Getting rid of the numbers

Post by nils73 »

I assume you are using the accessibility-version of the menu. Then you should see something like 2.1 in your source code. You can either select a different template (bulletmenu) from the MenuManager or use CSS to hide the on the screen.

Regards,
Nils
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Getting rid of the numbers

Post by Dr.CSS »

use this...

/*
definition tags are also hidden
these are also used for menu links 
*/
dfn {
  position: absolute;
  left: -1000px;
  top: -1000px;
  width: 0;
  height: 0;
  overflow: hidden;
  display: inline;
}
/* end accessibility */
Darren-H
Forum Members
Forum Members
Posts: 12
Joined: Mon Sep 25, 2006 6:41 pm

Re: Getting rid of the numbers

Post by Darren-H »

Hi

Brilliant, many thanks.

Darren
Post Reply

Return to “General Discussion”