[Solved] Removing (hierarchy) numbers in menu?

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Locked
mbaksa

[Solved] Removing (hierarchy) numbers in menu?

Post 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...
Last edited by mbaksa on Sat Aug 04, 2007 9:43 am, edited 1 time in total.
mbaksa

Re: Removing (hierarchy) numbers in menu?

Post by mbaksa »

Solved, nevermind.
RonnyK
Support Guru
Support Guru
Posts: 4962
Joined: Wed Oct 25, 2006 8:29 pm

Re: Removing (hierarchy) numbers in menu?

Post by RonnyK »

What about adding

Code: Select all

dfn {display:none;}
to the stylesheet.

Ronny
mbaksa

Re: Removing (hierarchy) numbers in menu?

Post by mbaksa »

RonnyK wrote: What about adding

Code: Select all

dfn {display:none;}
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...
RonnyK
Support Guru
Support Guru
Posts: 4962
Joined: Wed Oct 25, 2006 8:29 pm

Re: Removing (hierarchy) numbers in menu?

Post 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
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: [Solved] Removing (hierarchy) numbers in menu?

Post 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 */
Locked

Return to “Layout and Design (CSS & HTML)”