[Solved] Removing (hierarchy) numbers in menu?
[Solved] Removing (hierarchy) numbers in menu?
Don't know how to do that - when using templates that came with CMS made simple, they dont show! Could somebody help me please? Does it have something to do with CSS list-style-type? I changed that to "none" with no effect...
Last edited by mbaksa on Sat Aug 04, 2007 9:43 am, edited 1 time in total.
Re: Removing (hierarchy) numbers in menu?
That's even better! Thank you very much, RonnyK.
I'm new to CMS Made Simple and I'm wondering why can't stuff like this be found in module documentation or whereever... I didn't know where the problem is...
Re: Removing (hierarchy) numbers in menu?
Searching the form is a great tool, also the logic I put in the topic is part of the default templates that coem with the installation. That is also a good way to start using the CMSMS.
Ronny
Ronny
Re: [Solved] Removing (hierarchy) numbers in menu?
Actually those are accessibility dfns' iirc so usually it's done with the CSS found in the Accessibility and Cross browser style sheet...
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 */