Page 1 of 1

Menu Items are Numbering Themselves

Posted: Mon Apr 16, 2007 10:45 pm
by deosil
I have a numbering problem in the menu function. Here is what it is doing.

http://wilde.freepgs.com/aiden/index.php?page=home

Could you please help me eliminate this for me please?

Deosil the Jedi    8)

Re: Menu Items are Numbering Themselves

Posted: Mon Apr 16, 2007 11:40 pm
by Dee
If you look in the generated HTML source code you'll see those numbers are surrounded with tags (present in your menu template) like this:

Code: Select all

<dfn>1: </dfn>
Hide them using CSS. Look in the default stylesheets, do a search on the forum for dfn or lookhere to find out how.

Regards,
D

Re: Menu Items are Numbering Themselves

Posted: Thu Apr 19, 2007 4:17 am
by Dr.CSS
In a default install there is a style sheet called Accessibility and cross-browser tools that has...

/*
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;
}