Hi
How do I get rid of the 1.1, 2, 2.1 etc in the navigation links.
cheers
Darren
Getting rid of the numbers
Re: Getting rid of the numbers
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
Regards,
Nils
Re: Getting rid of the numbers
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 */
/*
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
Hi
Brilliant, many thanks.
Darren
Brilliant, many thanks.
Darren