Page 1 of 1

Problem with menu

Posted: Thu Mar 29, 2007 9:05 pm
by rockarena666
Hello everyone,

I'm new to using cmsmadesimple, I just installed it and I encountered a first problem. It's a small problem actually. When I add a new page to my site, the site menu get's adjusted which is a good thing but right in front of the menu link a number get's posted. I now have something like this:

1: Home
2: something else
3: something else

Can I adjust it so that these numbers do not get shown?

Edit: sorry I just found out that there are menu templates :-) So I need to import a template to the database and adjust it there in order to get rid of those numbers? Right?

Re: Problem with menu

Posted: Thu Mar 29, 2007 9:12 pm
by Nullig
Make sure you have the accessibility stylesheet attached to your template. It should include the following:

Code: Select all

dfn {
   position: absolute;
   left: -1000px;
   top: -1000px;
   width: 0;
   height: 0;
   overflow: hidden;
   display: inline;
}
which hides the numbers.

Nullig

Re: Problem with menu

Posted: Thu Mar 29, 2007 11:38 pm
by 10010110
rockarena666 wrote: Edit: sorry I just found out that there are menu templates :-) So I need to import a template to the database and adjust it there in order to get rid of those numbers? Right?
Yes, either with CSS or you edit the template directly and remove the dfns with their content.