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

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
DiZZ

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

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

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

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

Return to “CMSMS Core”