hiding skip link in rtl sites make a long horizontal scrolling.

#skip-link a,
#skip-link a:link,
#skip-link a:visited {
  position:absolute;
  display:block;
  left:-10000px;
  width:1px;
  height:1px;
  }

if add this to base-rtl.css, this bug fixed.

#skip-link a,
#skip-link a:link,
#skip-link a:visited {
  right:-10000px;
}
CommentFileSizeAuthor
#2 tao-horizontal-scroll-2824911.patch299 bytesGomesh
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

javid created an issue. See original summary.

Gomesh’s picture

I am also facing the same issue , after adding the patch the issue is resolved .

shailesh.bhosale’s picture

Status: Active » Needs review
imshivani’s picture

Status: Needs review » Needs work

For me , this is working fine for chrome, but for firefox still having the same issue. Please revise the patch.