Page 1 of 1
[Solved] Removing (hierarchy) numbers in menu?
Posted: Fri Aug 03, 2007 12:00 pm
by mbaksa
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...
Re: Removing (hierarchy) numbers in menu?
Posted: Fri Aug 03, 2007 12:29 pm
by mbaksa
Solved, nevermind.
Re: Removing (hierarchy) numbers in menu?
Posted: Fri Aug 03, 2007 12:29 pm
by RonnyK
What about adding
to the stylesheet.
Ronny
Re: Removing (hierarchy) numbers in menu?
Posted: Sat Aug 04, 2007 12:16 am
by mbaksa
RonnyK wrote:
What about adding
to the stylesheet.
Ronny
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?
Posted: Sat Aug 04, 2007 8:57 am
by RonnyK
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
Re: [Solved] Removing (hierarchy) numbers in menu?
Posted: Sat Aug 04, 2007 6:37 pm
by Dr.CSS
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 */