Page 1 of 1

Getting rid of the numbers

Posted: Tue Oct 10, 2006 11:16 am
by Darren-H
Hi

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

cheers
Darren

Re: Getting rid of the numbers

Posted: Tue Oct 10, 2006 12:30 pm
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

Re: Getting rid of the numbers

Posted: Tue Oct 10, 2006 8:10 pm
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 */

Re: Getting rid of the numbers

Posted: Wed Oct 11, 2006 5:36 am
by Darren-H
Hi

Brilliant, many thanks.

Darren