Page 1 of 1

AccessKey=1 Displaying in my Nav Bar - ONLY in FireFox???

Posted: Fri Dec 08, 2006 3:46 pm
by DiZZ
VERY strange stuff happening today. I added a news piece (as usual) and now whenever you click on a link in my nav bar a box appears to the left stating "AccessKey=1". This ONLY appears in FireFox, not in IE, and I have no idea what the issue is. This seems very strange as I would assume there is something set in the template/database/php that is causing the error, so why would browsers interpret this differently?

You can view this problem by visiting http://www.doyledesigninc.com/. I am a web designer who is fairly new to CMS Made Simple, so any advice you can offer would be greatly appreciated!

Re: AccessKey=1 Displaying in my Nav Bar - ONLY in FireFox???

Posted: Sat Dec 09, 2006 3:15 am
by Dr.CSS
Well you did a fix by taking out the part of the menu...

Your problem comes from eliminating the CSS call for pushing them off to the side...

needs...

/* Start of CMSMS style sheet 'Accessibility and cross-browser tools' */
/* accessibility */

/*
menu links accesskeys
*/
span.accesskey {
  text-decoration:none;
}

/*
accessibility divs are hidden by default
text, screenreaders and such will show these
*/
.accessibility, hr {
  position: absolute;
  top: -999em;
  left: -999em;
}
div.hr {clear:both}
/*
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 */