Don't tab to my labels, pleez
Have you noticed in forms that tabbing lands on the next label then you have to tab again to go to the input field?
It seems to only happen in a recent FireFox upgrade. It does not happen in IE6 nor Safari.
The culprit seems to be the class
.xar-form-input-wrapper {
margin-bottom: 4px;
overflow:auto;
}
in file modules/base/xarstyles/xarcore-xhtml1-strict.css
If you comment out the overflow: auto; fixes it.
Or in your theme's style.css, add this override
.xar-form-input-wrapper {
overflow:visible !important;
}
There are no comments attached to this item.



